Fixing the linux bots I broke in r284550
authorChris Bieneman <beanz@apple.com>
Wed, 19 Oct 2016 00:13:56 +0000 (00:13 +0000)
committerChris Bieneman <beanz@apple.com>
Wed, 19 Oct 2016 00:13:56 +0000 (00:13 +0000)
Need to gate cxx linker adding driver-mode flag based on the linker being clang.

llvm-svn: 284555

lldb/packages/Python/lldbsuite/test/make/Makefile.rules

index 4d343cd..68106cf 100644 (file)
@@ -354,7 +354,9 @@ ifneq "$(strip $(DYLIB_CXX_SOURCES))" ""
     DYLIB_OBJECTS +=$(strip $(DYLIB_CXX_SOURCES:.cpp=.o))
     CXX = $(call cxx_compiler,$(CC))
     LD = $(call cxx_linker,$(CC))
-    LDFLAGS += --driver-mode=g++
+    ifeq ($(findstring clang, $(cxx_linker)), clang)
+      LDFLAGS += --driver-mode=g++
+    endif
 endif
 
 #----------------------------------------------------------------------
@@ -378,7 +380,9 @@ endif
 ifneq "$(strip $(CXX_SOURCES))" ""
        OBJECTS +=$(strip $(CXX_SOURCES:.cpp=.o))
        CXX = $(call cxx_compiler,$(CC))
-  LDFLAGS += --driver-mode=g++
+  ifeq ($(findstring clang, $(cxx_linker)), clang)
+    LDFLAGS += --driver-mode=g++
+  endif
        LD = $(call cxx_linker,$(CC))
 endif
 
@@ -397,7 +401,9 @@ ifneq "$(strip $(OBJCXX_SOURCES))" ""
        OBJECTS +=$(strip $(OBJCXX_SOURCES:.mm=.o))
        CXX = $(call cxx_compiler,$(CC))
        LD = $(call cxx_linker,$(CC))
-  LDFLAGS += --driver-mode=g++
+  ifeq ($(findstring clang, $(cxx_linker)), clang)
+    LDFLAGS += --driver-mode=g++
+  endif
        ifeq "$(findstring lobjc,$(LDFLAGS))" ""
                LDFLAGS +=-lobjc
        endif