Opened 10 years ago
Closed 10 years ago
#7705 closed Bugs (fixed)
qcc calls non-existent 'ar'
| Reported by: | Owned by: | Vladimir Prus | |
|---|---|---|---|
| Milestone: | To Be Determined | Component: | build |
| Version: | Boost 1.52.0 | Severity: | Problem |
| Keywords: | Cc: |
Description (last modified by )
qcc.jam diff:
@@ -217,7 +217,7
actions piecemeal archive
{
$(RM) "$(<)"
- ar rc "$(<)" "$(>)"
+ "$(CONFIG_COMMAND)" -A "$(<)" "$(>)"
}
when compiling boost for QNX - cross-compiling from windows, the program 'ar' doesn't exist. But 'qcc' (CONFIG_COMMAND) itself can build the archive (and knows what the target architecture is), so it is best to ask it.
Change History (5)
comment:1 by , 10 years ago
comment:2 by , 10 years ago
| Component: | Building Boost → build |
|---|---|
| Description: | modified (diff) |
| Owner: | set to |
comment:3 by , 10 years ago
Is there online documentation for "qcc -A" can I can reference from the code?
comment:5 by , 10 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

avoid wiki formatting:
@@ -217,7 +217,7 @@ actions piecemeal archive { $(RM) "$(<)" - ar rc "$(<)" "$(>)" + "$(CONFIG_COMMAND)" -A "$(<)" "$(>)" }