Displaying 2 results from an estimated 2 matches for "fugafuga".
2012 Jul 06
0
[LLVMdev] how to change a compiler from a host to a target in Clang's assembler and linker
...; and "Linker" in Clang. Please advise me how to change a compiler from a host one to a target one.
* Have you tried "clang -c -integrated-as"?
To Mips guys: Do you think Mips MC assembler would work?
FYI, workaround.
clang -S hogehoge.c
target-gcc -c hogehoge.s
target-gcc -o fugafuga hogehoge.o ...
(I don't know how mips-clang would be mature)
...Takumi (中村)
2012 Jul 04
6
[LLVMdev] how to change a compiler from a host to a target in Clang's assembler and linker
Hi,
I would like to ask you how to use Clang in cross-compile environment. My environment is as follows:
------
HOST: 32-bit Fedora 16 with Intel Core i7
gcc/g++ compiler available
TARGET: 32-bit mips-typed linux
gnu gcc/g++ for 32-bit mips-typed linux available
------
As Clang's option is "-c" in use, my programs are compiled and linked under a host