[llvm-commits] CVS: llvm/Makefile.rules

Reid Spencer reid at x10sys.com
Thu Dec 2 22:04:46 PST 2004



Changes in directory llvm:

Makefile.rules updated: 1.245 -> 1.246
---
Log message:

Pass -strip-debug to gccas when bytecode libraries are being built.


---
Diffs of the changes:  (+4 -0)

Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.245 llvm/Makefile.rules:1.246
--- llvm/Makefile.rules:1.245	Thu Dec  2 15:23:43 2004
+++ llvm/Makefile.rules	Fri Dec  3 00:04:35 2004
@@ -510,6 +510,10 @@
 #---------------------------------------------------------
 ifdef BYTECODE_LIBRARY
 
+# make the C and C++ compilers strip debug info out of bytecode libraries.
+BCCompile.C += -Wa,-strip-debug
+BCCompile.CXX += -Wa,-strip-debug
+
 all-local:: $(LibName.BCA)
 
 ifdef EXPORTED_SYMBOL_FILE






More information about the llvm-commits mailing list