[llvm-commits] CVS: llvm/test/Programs/SingleSource/CustomChecked/Makefile

John Criswell criswell at cs.uiuc.edu
Mon Feb 9 11:26:03 PST 2004


Changes in directory llvm/test/Programs/SingleSource/CustomChecked:

Makefile updated: 1.10 -> 1.11

---
Log message:

We get unreferenced cxa_demangle errors if we don't compile with libstdc++.
I've looked at the GCC 3.3 native libsupc++ and libstdc++: libsupc++ doesn't
define cxa_demangle at all while libstdc++ has it listed as an undefined
symbol.  So, I think linking with the full libstdc++ is correct.



---
Diffs of the changes:  (+1 -1)

Index: llvm/test/Programs/SingleSource/CustomChecked/Makefile
diff -u llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.10 llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.11
--- llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.10	Fri Dec 19 17:25:15 2003
+++ llvm/test/Programs/SingleSource/CustomChecked/Makefile	Mon Feb  9 11:25:36 2004
@@ -6,7 +6,7 @@
 
 include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
 
-LIBS += -lsupc++
+LIBS += -lstdc++
 LDFLAGS += -lm
 
 LLI_RUN  := $(addsuffix .run-lli, $(PREFIXED_PROGRAMS_TO_TEST))





More information about the llvm-commits mailing list