Opened 10 years ago
Last modified 10 years ago
#7216 new Bugs
qcc.jam file could use a minor update for ar
Reported by: | Owned by: | Vladimir Prus | |
---|---|---|---|
Milestone: | To Be Determined | Component: | build |
Version: | Boost 1.51.0 | Severity: | Problem |
Keywords: | Cc: |
Description
The qcc.jam file is apparently intended for building on a QNX OS hosted target. It is common for the QNX source to be cross compiled on MS Windows and the default archive utility is not available. Would you please add a comment and alternate solution around line 220 like the following. This would probably save new Boost users from having to track down a solution to this in the future.
# Modify archive command for cross-compiling for QNX NTO using a MS Windows hosted environment (x86 target used as example). # ntox86-ar rc "$(<)" "$(>)"
Change History (2)
comment:1 by , 10 years ago
comment:2 by , 10 years ago
Component: | Building Boost → build |
---|---|
Owner: | set to |
Note:
See TracTickets
for help on using tickets.
This can be fixed by using
in place of
as qcc (which is CONFIG_COMMAND) can do the archiving itself (with -A).
see ticket #7705