summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranonymous <local@localhost>2010-09-20 00:25:50 +0000
committeranonymous <local@localhost>2010-09-20 00:25:50 +0000
commitc459eafb18cfe8f7c70744f8b5af99d5ad1574f9 (patch)
tree75f5fca374629e211c4b50505a2725f2a062ba51
parent8073c8af04ed8dcfbdd6545eeab8fa2d9f6ca046 (diff)
downloadlibcxxrt-c459eafb18cfe8f7c70744f8b5af99d5ad1574f9.tar.gz
libcxxrt-c459eafb18cfe8f7c70744f8b5af99d5ad1574f9.tar.bz2
libcxxrt-c459eafb18cfe8f7c70744f8b5af99d5ad1574f9.tar.xz
Don't link against -ldl except on linux since it causes regressions on FBSD
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 84f573a..dfb04d7 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -17,7 +17,7 @@ LDFLAGS += -L/usr/local/lib -L. -lpthread -fexceptions
PRODUCTS = test libcxxabi.so.1 system_test
test: $(TEST_OBJECTS) libcxxabi.so library
- @gcc $(CPPFLAGS) $(LDFLAGS) -o test $(TEST_OBJECTS) -lcxxabi -ldl
+ @gcc $(CPPFLAGS) $(LDFLAGS) -o test $(TEST_OBJECTS) -lcxxabi
library:
@cd ../src && $(MAKE)