search for: link_spec

Displaying 2 results from an estimated 2 matches for "link_spec".

Did you mean: link_speed
2008 Sep 04
0
[LLVMdev] xcodebuild and LLVM
...llvm-gcc" > on the command line. I've also managed to get LLVM bitcode generates > for intermediate files by using "CC="lvm-gcc -emit-llvm"; however, > this > gives an error during linking stating that ld does not understand the > -emit-llvm option. In the LINK_SPEC just add %{emit-llvm: } before %{e*} or, if that doesn't work, try %<emit-llvm. One of those should work.
2008 Sep 03
5
[LLVMdev] xcodebuild and LLVM
Dear All, Is there a way to convince xcodebuild to build bitcode files for LLVM for an arbitrary Xcode project? So far, I've been able to get xcodebuild to use LLVM by installing XCode 3.1 and using CC="llvm-gcc" on the command line. I've also managed to get LLVM bitcode generates for intermediate files by using "CC="lvm-gcc -emit-llvm"; however, this gives