Changes between Initial Version and Version 1 of Ticket #55302, comment 19


Ignore:
Timestamp:
Nov 18, 2017, 6:08:42 PM (6 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55302, comment 19

    initial v1  
    1 I let my "reference" 10.6.8 VM run overnight building libgcc +universal, and it failed to build it. I obtained the same error you did:
     1I let my "reference" 10.6.8 VM run overnight building libgcc +universal, and it failed to build it, just like you. I obtained the same error you did:
    22
    33{{{
     
    77}}}
    88
    9 Now I'm confused, because I just built it on my day-to-day 10.6.8 machine without any trouble, although it is configured slightly differently.
     9Now I'm confused, because I just built it on my day-to-day 10.6.8 machine without any trouble, although it is configured slightly differently. The fact that it also builds on the buildbots (although universal was not tried on the buildbots) is interesting.
    1010
    1111I have the following installed on that reference VM:
     
    1919}}}
    2020I _think_ the issue might be in the linker, above. I'll try upgrading to a newer linker (ld64 version) and see what happens.
     21
     22Here's what I did to upgrade to a newer linker on 10.6.8
     23
     24{{{
     25sudo port deactivate ld64
     26sudo port deactivate ld64-127
     27sudo port install ld64-236
     28sudo port install ld64 +ld64_236 -ld64_127
     29}}}
     30I don't know yet if this is the key thing that is needed to fix this build.
     31
     32I'll let you know how it turns out.