> For the complete documentation index, see [llms.txt](https://mwx.twelite.info/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mwx.twelite.info/v0.1.9/install_n_build/nopurattofmu.md).

# 他のプラットフォーム

他のプラットフォームでも一部の機能([serparser](/v0.1.9/api-reference/classes/ser_parser.md), [pktparser](/v0.1.9/api-reference/classes/pktparser.md), コンソール用Serialオブジェクト)をビルドできるように、ビルド定義を用意しています。必要なファイルのみを切り出しています。

ビルド定義は`{mwxライブラリ格納}/stdio`フォルダに格納しています。ビルド方法は[README.md](https://github.com/monowireless/mwx/tree/master/stdio)(リンクはGitHub上)を参照してください。

* C++11でのコンパイルが出来ること。
* C++11の標準ライブラリヘッダが利用できること (utility, algorithm, functional, iteratorなど)
* new/delete/virtualは使用しません。
* newによるメモリ確保は例外的に使用する場合があります。
  * serparser/pktparserでnew演算子を利用する[`alloc_heap`](/v0.1.9/api-reference/classes/alloc.md)では`delete`による処理を行っています。
  * （参考） ただしmwxライブラリとしては`delete`については考慮しない前提で設計されている部分もあります。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://mwx.twelite.info/v0.1.9/install_n_build/nopurattofmu.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
