diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-12 02:21:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-12 02:21:38 +0000 |
commit | 3d2a36277ef8126f21d28df86e0159ffbdf9163e (patch) | |
tree | 1b3e734aaec9b209ced0064e9f41b4fe8c56e90c /llvm | |
parent | a9396af5f2378e06e36d20f13cb2a4c14c48e8d9 (diff) | |
download | bcm5719-llvm-3d2a36277ef8126f21d28df86e0159ffbdf9163e.tar.gz bcm5719-llvm-3d2a36277ef8126f21d28df86e0159ffbdf9163e.zip |
whether we enable dylibs or not depends on the host, not the target.
llvm-svn: 101007
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/Makefile.config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile.config.in b/llvm/Makefile.config.in index 7c59e5f3f42..d88ec4a287c 100644 --- a/llvm/Makefile.config.in +++ b/llvm/Makefile.config.in @@ -323,7 +323,7 @@ CXX_INCLUDE_64BIT_DIR = @CXX_INCLUDE_64BIT_DIR@ # 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 |