5

I compile a C++ program, using for example the following.

clang++ -O4 -emit-llvm file1.cpp -c -o file1.bc 
clang++ -O4 -emit-llvm file2.cpp -c -o file2.bc 

llvm-link file1.bc file2.bc 

How can I perform link time optimization here?

Charles
  • 50,943
  • 13
  • 104
  • 142
pythonic
  • 20,589
  • 43
  • 136
  • 219

1 Answers1

10

Use opt:

clang++ -O4 -emit-llvm file1.cpp -c -o file1.bc 
clang++ -O4 -emit-llvm file2.cpp -c -o file2.bc 
llvm-link file1.bc file2.bc -o all.bc
opt -std-compile-opts -std-link-opts -O3 all.bc -o optimized.bc
Chris Dodd
  • 119,907
  • 13
  • 134
  • 226