aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Makefile.unittest
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-11-26 09:32:02 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-11-26 09:32:02 +0000
commitb9dec1f92872f36e308a638eb99071c7da1c41a1 (patch)
treeed2ae72a6477695e040b0d54a0b8eb28d207bb79 /unittests/Makefile.unittest
parent28b6727a35688ab7c4c3eacab74c7e9da23168ad (diff)
downloadexternal_llvm-b9dec1f92872f36e308a638eb99071c7da1c41a1.zip
external_llvm-b9dec1f92872f36e308a638eb99071c7da1c41a1.tar.gz
external_llvm-b9dec1f92872f36e308a638eb99071c7da1c41a1.tar.bz2
unittests/JITTests: Don't use --export-dynamic but --export-all-symbols on cygming.
GNU ld/PECOFF accepts but ignores them below; --version-script --export-dynamic --rpath FIXME: autoconf should be aware of them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Makefile.unittest')
-rw-r--r--unittests/Makefile.unittest8
1 files changed, 5 insertions, 3 deletions
diff --git a/unittests/Makefile.unittest b/unittests/Makefile.unittest
index 9a75b2c..8be6174 100644
--- a/unittests/Makefile.unittest
+++ b/unittests/Makefile.unittest
@@ -35,9 +35,11 @@ endif
TESTLIBS = -lGoogleTest -lUnitTestMain
ifeq ($(ENABLE_SHARED), 1)
- # Add the absolute path to the dynamic library. This is ok because
- # we'll never install unittests.
- LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
+ ifneq (,$(RPATH))
+ # Add the absolute path to the dynamic library. This is ok because
+ # we'll never install unittests.
+ LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
+ endif
# Also set {DYLD,LD}_LIBRARY_PATH because OSX ignores the rpath most
# of the time.
Run.Shared := $(SHLIBPATH_VAR)="$(SharedLibDir)$${$(SHLIBPATH_VAR):+:}$$$(SHLIBPATH_VAR)"