From: Reid Spencer Date: Thu, 1 Jun 2006 06:12:21 +0000 (+0000) Subject: Prevent the -pedantic option from causing Mac OS/X build problems: X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=177284ce8976d840e6093c6555dacc13f3ed0c4f;p=oota-llvm.git Prevent the -pedantic option from causing Mac OS/X build problems: LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range of 'double' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28620 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/Makefile b/lib/CodeGen/Makefile index 744f8e937b9..e77a53a337d 100644 --- a/lib/CodeGen/Makefile +++ b/lib/CodeGen/Makefile @@ -12,3 +12,6 @@ LIBRARYNAME = LLVMCodeGen PARALLEL_DIRS = SelectionDAG include $(LEVEL)/Makefile.common + +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))