[llvm-commits] [llvm] r101007 - /llvm/trunk/Makefile.config.in
Chris Lattner
sabre at nondot.org
Sun Apr 11 19:21:38 PDT 2010
Author: lattner
Date: Sun Apr 11 21:21:38 2010
New Revision: 101007
URL: http://llvm.org/viewvc/llvm-project?rev=101007&view=rev
Log:
whether we enable dylibs or not depends on the host, not the target.
Modified:
llvm/trunk/Makefile.config.in
Modified: llvm/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.config.in?rev=101007&r1=101006&r2=101007&view=diff
==============================================================================
--- llvm/trunk/Makefile.config.in (original)
+++ llvm/trunk/Makefile.config.in Sun Apr 11 21:21:38 2010
@@ -323,7 +323,7 @@
# TARGET_HAS_DYNAMIC_LIBS - This is set if the target supports dynamic linking
# .dylib or .so files.
-ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
TARGET_HAS_DYNAMIC_LIBS := 1
endif
More information about the llvm-commits
mailing list