[llvm-commits] [hlvm] r38176 - /hlvm/trunk/build/bytecode.py
saem at cs.uiuc.edu
saem at cs.uiuc.edu
Sat Jul 7 17:00:46 PDT 2007
Author: saem
Date: Sat Jul 7 19:00:46 2007
New Revision: 38176
URL: http://llvm.org/viewvc/llvm-project?rev=38176&view=rev
Log:
changed the --emit-llvm option to -emit-llvm, the extra dash was causing the build to bomb out with no such option as -femit-llvm
Modified:
hlvm/trunk/build/bytecode.py
Modified: hlvm/trunk/build/bytecode.py
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/build/bytecode.py?rev=38176&r1=38175&r2=38176&view=diff
==============================================================================
--- hlvm/trunk/build/bytecode.py (original)
+++ hlvm/trunk/build/bytecode.py Sat Jul 7 19:00:46 2007
@@ -41,7 +41,7 @@
tgt = target[0].path
theAction = env.Action(
"PATH='" + env['LLVM_bin'] + "' " + env['with_llvmgxx'] + ' $CXXFLAGS ' +
- includes + defines + " -c --emit-llvm -g -O3 -x c++ " + src + " -o " + tgt )
+ includes + defines + " -c -emit-llvm -g -O3 -x c++ " + src + " -o " + tgt )
env.Depends(target,env['with_llvmgxx'])
return env.Execute(theAction);
More information about the llvm-commits
mailing list