[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile.spec
Alkis Evlogimenos
alkis at cs.uiuc.edu
Wed Feb 25 23:58:01 PST 2004
Changes in directory llvm/test/Programs/External/SPEC:
Makefile.spec updated: 1.26 -> 1.27
---
Log message:
Fix problem -lm not being passed to the linker
---
Diffs of the changes: (+1 -3)
Index: llvm/test/Programs/External/SPEC/Makefile.spec
diff -u llvm/test/Programs/External/SPEC/Makefile.spec:1.26 llvm/test/Programs/External/SPEC/Makefile.spec:1.27
--- llvm/test/Programs/External/SPEC/Makefile.spec:1.26 Wed Feb 25 18:01:21 2004
+++ llvm/test/Programs/External/SPEC/Makefile.spec Wed Feb 25 23:57:20 2004
@@ -18,9 +18,7 @@
ifndef STDOUT_FILENAME
STDOUT_FILENAME := standard.out
endif
-ifndef LDFLAGS
-LDFLAGS = -lm
-endif
+LDFLAGS += -lm
# Get the current directory, the name of the benchmark, and the current
# subdirectory of the SPEC directory we are in (ie, CINT2000/164.gzip)
More information about the llvm-commits
mailing list