search for: file_to_compil

Displaying 1 result from an estimated 1 matches for "file_to_compil".

Did you mean: file_to_compile
2012 Oct 16
1
[LLVMdev] Cleanest way to do llvm-driven compile with specified passes
Hi there, I have a target platform for which I'm compiling code with llvm and my own backend. My current compilation route to create an executable is to just call something like: $ clang -O3 -ccc-host-triple arcompact [-I...] file_to_compile.c another_file.c [-lm etc] Importantly, clang here is running with the target version of gcc as the driver, so that gcc (call it gcc-arcompact) takes care of calling the correct assembler, linker, etc for the backend output. Now what I want to do is select my own optimization passes specifically...