diff options
author | David Robillard <d@drobilla.net> | 2010-12-31 22:22:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-31 22:22:48 +0000 |
commit | 7ad22167dcae1c37c0e15173e60580064a09808d (patch) | |
tree | ec2e8188b6502df0ae1a27c66b193c25cdd49566 /Makefile | |
parent | dcc62eca07aded6b3a07d9718139069ec8641401 (diff) | |
download | resp-7ad22167dcae1c37c0e15173e60580064a09808d.tar.gz resp-7ad22167dcae1c37c0e15173e60580064a09808d.tar.bz2 resp-7ad22167dcae1c37c0e15173e60580064a09808d.zip |
Use standard LLVM optimization passes, and optimize entire module (much more aggressive optimization than previous code).
git-svn-id: http://svn.drobilla.net/resp/resp@398 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -LLVM_CXXFLAGS=`llvm-config-2.7 --cppflags core jit native` -LLVM_LDFLAGS=`llvm-config-2.7 --ldflags --libs core jit native` +LLVM_CXXFLAGS=`llvm-config-2.7 --cppflags core jit native codegen ipo` +LLVM_LDFLAGS=`llvm-config-2.7 --ldflags --libs core jit native codegen ipo` #LLVM_CXXFLAGS=`llvm-config-2.7 --cppflags all` #LLVM_LDFLAGS=`llvm-config-2.7 --ldflags --libs all` |