[llvm-commits] [test-suite] r169995 - in /test-suite/trunk/MultiSource/Applications/ALAC: decode/Makefile encode/Makefile
Benjamin Kramer
benny.kra at googlemail.com
Wed Dec 12 09:48:08 PST 2012
Author: d0k
Date: Wed Dec 12 11:48:08 2012
New Revision: 169995
URL: http://llvm.org/viewvc/llvm-project?rev=169995&view=rev
Log:
Make sure ALAC links a c++ standard library.
This is a bit hacky, but the same way as all other tests do it.
Modified:
test-suite/trunk/MultiSource/Applications/ALAC/decode/Makefile
test-suite/trunk/MultiSource/Applications/ALAC/encode/Makefile
Modified: test-suite/trunk/MultiSource/Applications/ALAC/decode/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/ALAC/decode/Makefile?rev=169995&r1=169994&r2=169995&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/ALAC/decode/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/ALAC/decode/Makefile Wed Dec 12 11:48:08 2012
@@ -9,6 +9,7 @@
CFLAGS += -DTARGET_RT_BIG_ENDIAN=1
CXXFLAGS += -DTARGET_RT_BIG_ENDIAN=1
endif
+LDFLAGS = -lstdc++
PROG = alacconvert-decode
Modified: test-suite/trunk/MultiSource/Applications/ALAC/encode/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/ALAC/encode/Makefile?rev=169995&r1=169994&r2=169995&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/ALAC/encode/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/ALAC/encode/Makefile Wed Dec 12 11:48:08 2012
@@ -9,6 +9,7 @@
CFLAGS += -DTARGET_RT_BIG_ENDIAN=1
CXXFLAGS += -DTARGET_RT_BIG_ENDIAN=1
endif
+LDFLAGS = -lstdc++
PROG = alacconvert-encode
More information about the llvm-commits
mailing list