nlib
OS X用ライブラリに関する情報
前提となるソフトウェア
OS XにXcode, Homebrew, cmake等をインストールする必要があります。
ディレクトリ構成
OS X用パッケージのディレクトリ構成は以下のようになっています。
    ├── lib
    │  └── cmake
    │      └── clang
    │          ├── libnx_*.dylib     # shared libraries
    │          └── libnx_*_d.dylib   # shared libraries(debug)
    └── samples
        └── cmake
               ├── cmake_clang.sh   # A shell script for creating makefiles for the sample programs.
               └── cmake_xcode.sh   # A shell script for creating an Xcode project for the sample programs.
その他プラットフォーム固有の情報
  • wchar_tのサイズが4バイトであることに注意してください。文字はUTF-16ではなくUTF-32が格納されます。