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


Ignore:
Timestamp:
May 27, 2017, 6:34:42 PM (7 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54242, comment 1

    v3 v4  
    5757`./build/projects/compiler-rt/lib/builtins/CMakeFiles/clang_rt.10.4.dir/build.make`
    5858
    59 and change this line (note I'm in a custom repo here -- change this name to suit your own repo):
     59and change this line (note I'm in a custom repo here -- your file path will be a bit different):
    6060{{{
    6161cd /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/projects/compiler-rt/lib/builtins && lipo -output /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/./lib/clang/3.8.1/lib/darwin/libclang_rt.10.4.a -create -arch i386 /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/lib/libclang_rt.builtins_i386_10.4.a -arch x86_64 /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/lib/libclang_rt.builtins_x86_64_10.4.a
    6262}}}
    6363
    64 to this, updating the arch type (leave the name alone, although it's incorrect), and deleting the second arch (as it is also ppc):
     64to this, updating the arch type from `-create -arch i386` to `-create -arch ppc`  (leave the file name alone, although it's incorrect), and deleting the second arch (as it is also ppc, and we only want one ppc architecture):
    6565{{{
    6666cd /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/projects/compiler-rt/lib/builtins && lipo -output /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/./lib/clang/3.8.1/lib/darwin/libclang_rt.10.4.a -create -arch ppc /opt/local/var/macports/build/_opt_LeopardPorts_lang_llvm-3.8/clang-3.8/work/build/lib/libclang_rt.builtins_i386_10.4.a