diff options
author | Greg Clayton <gclayton@apple.com> | 2015-04-14 22:08:17 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-04-14 22:08:17 +0000 |
commit | 931b107364adbad262b696ee2b50a100f7c2f6e9 (patch) | |
tree | a884f6602e8481fd9ef95674229b3b2b78974e36 | |
parent | e5f13831d08f6a3ed3e0e0742d687aba0315468b (diff) | |
download | bcm5719-llvm-931b107364adbad262b696ee2b50a100f7c2f6e9.tar.gz bcm5719-llvm-931b107364adbad262b696ee2b50a100f7c2f6e9.zip |
MacOSX needs a space between $(ARCHFLAG) and $(ARCH) otherwise we try to call clang with "-archx86_64" which doesn't work.
llvm-svn: 234949
-rw-r--r-- | lldb/test/make/Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/make/Makefile.rules b/lldb/test/make/Makefile.rules index 5183f5a08ef..75b423cac6a 100644 --- a/lldb/test/make/Makefile.rules +++ b/lldb/test/make/Makefile.rules @@ -117,11 +117,11 @@ else endif CFLAGS ?= -g -O0 -CFLAGS += $(ARCHFLAG)$(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) -I$(LLDB_BASE_DIR)include +CFLAGS += $(ARCHFLAG) $(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) -I$(LLDB_BASE_DIR)include CFLAGS += -include $(THIS_FILE_DIR)test_common.h # Use this one if you want to build one part of the result without debug information: -CFLAGS_NO_DEBUG = -O0 $(ARCHFLAG)$(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) +CFLAGS_NO_DEBUG = -O0 $(ARCHFLAG) $(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) CXXFLAGS += -std=c++11 CXXFLAGS += $(CFLAGS) |