Changes between Initial Version and Version 1 of Ticket #38298, comment 20


Ignore:
Timestamp:
Mar 7, 2013, 1:48:09 PM (11 years ago)
Author:
michaelld (Michael Dickens)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38298, comment 20

    initial v1  
    33In 1.53, there is just asm code, no cpp; hence, if there is no match in the Jamfile then nothing can be compiled because there is no backup cpp to revert to. The Jam script, as before, provides only 32 or 64 builds, no 32_64. Further, the toolset was changed from "gcc" to "darwin" between 1.52 and 1.53, which I think is heading in the correct direction but not quite there (though I haven't quite figured out the exact toolset being used).
    44
    5 I see 2 primary choices: (1) disable context, as per an above comment. (2) use the muniversal portgroup, compile separately as 32 and 64, then merge any binaries; hope that none of the other installed files are 32 or 64 specific.
     5I see 3 primary choices: (1) disable context, as per an above comment. (2) use the muniversal portgroup, compile separately as 32 and 64, then merge any binaries; hope that none of the other installed files are 32 or 64 specific. (3) copy the 1.52 cpp files and hack the Jamfile(s) to revert to them if/when there are no appropriate asm files.