boost
boost copied to clipboard
Add support for QNX 7.1 build
Added QNX build files under the build_qnx folder.
Instructions for building with QNX 7.1:
- Setup the boost repo:
git clone https://github.com/chachoi/boost.git && cd boost
git checkout develop
- Replace "url = ../" in .gitmodules with "url = https://github.com/boostorg/". This step won't be necessary once this PR is merged.
- Init submodules:
git submodule update --init --recursive
-
Change "QCC" in ./tools/build/src/tools/qcc.jam line 41 to "qcc". I submitted a PR for this change. This step won't be necessary once that PR is merged into https://github.com/boostorg/build.
-
Source QNX 7.1 environment script:
source <path-to-script>/qnxsdp-env.sh
- Build and install
cd build_qnx
make -j 4 install
- Optional: build a test:
# Example: make test.<lib name> -j 4
make test.math -j 4