search for: dmy_arch

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

Did you mean: my_arch
2009 Dec 16
0
[LLVMdev] Compiler driver
...apture the above command-line. Is that the recommended approach? clang-cc does not longer exist, so you should not rely on it and use clang instead. You should be able to use it exactly the same way that you was using gcc (it is designed to be a drop in replacement), so "clang -arch my_arch -DMY_ARCH -S -o - in.c" should works. -- Jean-Daniel
2009 Dec 16
4
[LLVMdev] Compiler driver
Hi all, I'm developing a custom back-end for an odd-ball architecture (but one that is still describable by LLVMTargetMachine). The toolchain that it will fit into doesn't have a linker as such, so I want to use assembly as the default output. I've got to the point of emitting working custom assembly for very simple C programs (i.e. ones that don't rely on libraries). At the