Displaying 2 results from an estimated 2 matches for "bc_files".
Did you mean:
c_files
2008 Apr 05
2
[LLVMdev] LLVM for crosscompiling?
Hi, I am trying to use LLVM on x86 with some code intended for another
architecture (IBM Cell). The plan is:
1. foreach $c_files
llvm-gcc -emit-llvm -c -o $bc_file $c_file
2. link $bc_files
3. run my passes with 'opt'
4. llc -march=c
5. cell_cc
The original code is for the Cell, and uses altivec intrinsics. However,
llvm-gcc complains about not recognizing them. I read that there is
an -maltivec flag for the LLVM PowerPC backend, but my version of llvm-gcc
complains about...
2008 Apr 06
0
[LLVMdev] LLVM for crosscompiling?
On Apr 5, 2008, at 3:31 PM, Sunjae Park wrote:
> Hi, I am trying to use LLVM on x86 with some code intended for another
> architecture (IBM Cell). The plan is:
>
> 1. foreach $c_files
> llvm-gcc -emit-llvm -c -o $bc_file $c_file
> 2. link $bc_files
> 3. run my passes with 'opt'
> 4. llc -march=c
> 5. cell_cc
>
> The original code is for the Cell, and uses altivec intrinsics.
> However,
> llvm-gcc complains about not recognizing them. I read that there is
> an -maltivec flag for the LLVM PowerPC backend, but m...