Opened 10 years ago
Last modified 10 years ago
#6997 new Bugs
Bug in specifying alternate build toolset in gcc.jam
Reported by: | Owned by: | Vladimir Prus | |
---|---|---|---|
Milestone: | To Be Determined | Component: | build |
Version: | Boost 1.49.0 | Severity: | Regression |
Keywords: | Cc: |
Description
You cannot currently specify alternate gcc versions. For example, if you do the following:
./b2 toolset=gcc-44
You will get an error like:
error: version '44' requested but 'g++-44' not found and version '4.1.2' of default 'g++' does not match
This is because the version-checking code tries to run g++-44 instead of g++44... the patch fixes this in the affected code, comments, and printouts.
Attachments (1)
Change History (2)
by , 10 years ago
Attachment: | gcc.jam.patch added |
---|
comment:1 by , 10 years ago
Component: | Building Boost → build |
---|---|
Owner: | set to |
Note:
See TracTickets
for help on using tickets.
patch to fix gcc.jam