Changes between Version 1 and Version 2 of Ticket #54242, comment 4


Ignore:
Timestamp:
May 27, 2017, 7:40:07 PM (7 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54242, comment 4

    v1 v2  
    33I suppose it's kind of surprising then that the default build comes out with a ppc arch library that we can use at all. 
    44
    5 I don't think it's easy to patch files _after_ the configure stage. Some reinplacing could be done post-configure instead, I suppose.
     5I don't think it's easy to patch files _after_ the configure stage. Some reinplacing could be done post-configure instead, I suppose. I wish it was a bit easier to debug cmake build scripts.
    66
    7 I wish it was a bit easier to debug cmake build scripts.
     7If found this:
     8{{{
     9if(NOT DARWIN_osx_ARCHS)
     10    set(DARWIN_osx_ARCHS i386 x86_64 x86_64h)
     11  endif()
     12}}}
     13
     14and it looks tempting to just -DDARWIN_osx_ARCHS="ppc ppc64". Will see if that fixes things.