[llvm-commits] [llvm] r63882 - /llvm/trunk/utils/unittest/googletest/Makefile

Mike Stump mrs at apple.com
Thu Feb 5 12:45:27 PST 2009


Author: mrs
Date: Thu Feb  5 14:45:27 2009
New Revision: 63882

URL: http://llvm.org/viewvc/llvm-project?rev=63882&view=rev
Log:
Probe for flags before using them to try to help compiling with
compilers that don't support those flags.  This hopefully will help
gcc 3.X compile this code.  http://llvm.org/PR3487

Modified:
    llvm/trunk/utils/unittest/googletest/Makefile

Modified: llvm/trunk/utils/unittest/googletest/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/unittest/googletest/Makefile?rev=63882&r1=63881&r2=63882&view=diff

==============================================================================
--- llvm/trunk/utils/unittest/googletest/Makefile (original)
+++ llvm/trunk/utils/unittest/googletest/Makefile Thu Feb  5 14:45:27 2009
@@ -9,10 +9,13 @@
 
 LEVEL := ../../..
 include $(LEVEL)/Makefile.config
+NO_MISSING_FIELD_INITIALIZERS := $(shell $(CXX) -Wno-missing-field-initializers -fsyntax-only -xc /dev/null 2>/dev/null && echo -Wno-missing-field-initializers)
+NO_VAROADIC_MACROS := $(shell $(CXX) -Wno-variadic-macros -fsyntax-only -xc /dev/null 2>/dev/null && echo -Wno-variadic-macros)
+
 
 LIBRARYNAME = GoogleTest
 BUILD_ARCHIVE = 1
 CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
-CPP.Flags += -Wno-missing-field-initializers -Wno-variadic-macros
+CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VAROADIC_MACROS)
 
 include $(LEVEL)/Makefile.common





More information about the llvm-commits mailing list