Changes between Initial Version and Version 3 of Ticket #6885
- Timestamp:
- Jan 3, 2013, 5:06:16 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6885
- Property Type Bugs → Support Requests
- Property Severity Problem → Not Applicable
-
Ticket #6885 – Description
initial v3 1 1 QNX qcc 4.4.2 shows as supported and tested on the boost.org website, but I have been having problems building all the projects on Windows (from .zip file) with QNX 6.5 SDK targeting x86. The first change that helped compile 11 projects was as follows: 2 2 3 4 {{{ 3 5 ''In file tools\build\v2\tools\qcc.jam, in the “actions piecemeal archive” block, replace the line: ar rc "$(<)" "$(>)" with the following: ntox86-ar rc "$(<)" "$(>)" 4 6 '' 7 }}} 8 5 9 6 10 I assume there is a better "fix" for ar ... but I'm uncertain what needs to change. … … 8 12 With the following bjam I get success, and the remaining projects failure. Thread is used as an example, as it is trying to build win32 files. 9 13 14 15 {{{ 10 16 bjam -q --prefix=%DRIVE%\boost --build-type=minimal --build-dir=%DRIVE%\boostBuild_%BOOSTVER% --layout=system toolset=qcc target-os=qnxnto --variant=release link=static threading=multi runtime-link=shared --without-graph --without-graph_parallel --without-locale --without-mpi --without-python --without-regex --without-serialization --without-test --without-thread --without-wave install 11 17 … … 13 19 bjam -q --prefix=%DRIVE%\boost --build-type=minimal --build-dir=%DRIVE%\boostBuild_%BOOSTVER% --layout=system toolset=qcc target-os=qnxnto --variant=release link=static threading=multi runtime-link=shared --with-thread install 14 20 21 }}} 22 15 23 16 24 I get results like the following (again, thread as an example). What am I doing wrong? 17 25 26 27 {{{ 18 28 D:\boost_1_49_0>bjam -q --prefix=D:\boost --build-type=minimal --build-dir=D:\bo 19 29 ostBuild_1_49_0 --layout=system toolset=qcc target-os=qnxnto --variant=release l … … 117 127 118 128 D:\boost_1_49_0> 129 }}}