diff options
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/gold/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llc/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/lli/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-ar/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-as/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-dis/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-extract/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-ld/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-link/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-mc/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-nm/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/llvm-prof/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/lto/Makefile | 1 | ||||
-rw-r--r-- | llvm/tools/opt/Makefile | 1 |
14 files changed, 0 insertions, 14 deletions
diff --git a/llvm/tools/gold/Makefile b/llvm/tools/gold/Makefile index 3f77229b33b..7bac4ec62de 100644 --- a/llvm/tools/gold/Makefile +++ b/llvm/tools/gold/Makefile @@ -19,7 +19,6 @@ LINK_LIBS_IN_SHARED=1 SHARED_LIBRARY = 1 BUILD_ARCHIVE = 0 LOADABLE_MODULE = 1 -CXXFLAGS = -fno-rtti LINK_COMPONENTS := support system LIBS += -llto diff --git a/llvm/tools/llc/Makefile b/llvm/tools/llc/Makefile index 6b5b125d8ab..7319aada489 100644 --- a/llvm/tools/llc/Makefile +++ b/llvm/tools/llc/Makefile @@ -9,7 +9,6 @@ LEVEL = ../.. TOOLNAME = llc -CXXFLAGS = -fno-rtti # Include this here so we can get the configuration of the targets # that have been configured for construction. We have to do this diff --git a/llvm/tools/lli/Makefile b/llvm/tools/lli/Makefile index 2341bed3dda..8f6eeed486b 100644 --- a/llvm/tools/lli/Makefile +++ b/llvm/tools/lli/Makefile @@ -9,7 +9,6 @@ LEVEL := ../.. TOOLNAME := lli -CXXFLAGS = -fno-rtti LINK_COMPONENTS := jit interpreter nativecodegen bitreader selectiondag # Enable JIT support diff --git a/llvm/tools/llvm-ar/Makefile b/llvm/tools/llvm-ar/Makefile index 3db7964ad1d..e4fe4e8ca39 100644 --- a/llvm/tools/llvm-ar/Makefile +++ b/llvm/tools/llvm-ar/Makefile @@ -11,7 +11,6 @@ LEVEL = ../.. TOOLNAME = llvm-ar LINK_COMPONENTS = archive REQUIRES_EH := 1 -#CXXFLAGS = -fno-rtti # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile index d6fbd710fa3..e1e5853a7b6 100644 --- a/llvm/tools/llvm-as/Makefile +++ b/llvm/tools/llvm-as/Makefile @@ -10,7 +10,6 @@ LEVEL = ../.. TOOLNAME = llvm-as LINK_COMPONENTS := asmparser bitwriter -CXXFLAGS = -fno-rtti # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 diff --git a/llvm/tools/llvm-dis/Makefile b/llvm/tools/llvm-dis/Makefile index 96f3cbb5687..22c9ecc300e 100644 --- a/llvm/tools/llvm-dis/Makefile +++ b/llvm/tools/llvm-dis/Makefile @@ -10,7 +10,6 @@ LEVEL = ../.. TOOLNAME = llvm-dis LINK_COMPONENTS := bitreader -CXXFLAGS = -fno-rtti # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 diff --git a/llvm/tools/llvm-extract/Makefile b/llvm/tools/llvm-extract/Makefile index dee057270fe..5672aa3299a 100644 --- a/llvm/tools/llvm-extract/Makefile +++ b/llvm/tools/llvm-extract/Makefile @@ -11,7 +11,6 @@ LEVEL = ../.. TOOLNAME = llvm-extract LINK_COMPONENTS := ipo bitreader bitwriter asmparser -CXXFLAGS = -fno-rtti # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 diff --git a/llvm/tools/llvm-ld/Makefile b/llvm/tools/llvm-ld/Makefile index 1da19665a36..1ef9bf11745 100644 --- a/llvm/tools/llvm-ld/Makefile +++ b/llvm/tools/llvm-ld/Makefile @@ -11,6 +11,5 @@ LEVEL = ../.. TOOLNAME = llvm-ld LINK_COMPONENTS = ipo scalaropts linker archive bitwriter -CXXFLAGS = -fno-rtti include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-link/Makefile b/llvm/tools/llvm-link/Makefile index de592aae6a1..26370187c55 100644 --- a/llvm/tools/llvm-link/Makefile +++ b/llvm/tools/llvm-link/Makefile @@ -10,7 +10,6 @@ LEVEL = ../.. TOOLNAME = llvm-link LINK_COMPONENTS = linker bitreader bitwriter asmparser -CXXFLAGS = -fno-rtti # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 diff --git a/llvm/tools/llvm-mc/Makefile b/llvm/tools/llvm-mc/Makefile index 5ce1a8f7a82..5b0fe3f5446 100644 --- a/llvm/tools/llvm-mc/Makefile +++ b/llvm/tools/llvm-mc/Makefile @@ -13,7 +13,6 @@ TOOLNAME = llvm-mc # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 NO_INSTALL = 1 -CXXFLAGS = -fno-rtti # Include this here so we can get the configuration of the targets # that have been configured for construction. We have to do this diff --git a/llvm/tools/llvm-nm/Makefile b/llvm/tools/llvm-nm/Makefile index bdefaa6248e..ecf5f8c3dcf 100644 --- a/llvm/tools/llvm-nm/Makefile +++ b/llvm/tools/llvm-nm/Makefile @@ -13,6 +13,5 @@ LINK_COMPONENTS = archive bitreader # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -CXXFLAGS = -fno-rtti include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-prof/Makefile b/llvm/tools/llvm-prof/Makefile index b1fd3304f1a..86eb54d51bf 100644 --- a/llvm/tools/llvm-prof/Makefile +++ b/llvm/tools/llvm-prof/Makefile @@ -13,6 +13,5 @@ LINK_COMPONENTS = bitreader analysis # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -CXXFLAGS = -fno-rtti include $(LEVEL)/Makefile.common diff --git a/llvm/tools/lto/Makefile b/llvm/tools/lto/Makefile index f0bc67c50c8..3120aa52c95 100644 --- a/llvm/tools/lto/Makefile +++ b/llvm/tools/lto/Makefile @@ -17,7 +17,6 @@ include $(LEVEL)/Makefile.config LINK_LIBS_IN_SHARED = 1 SHARED_LIBRARY = 1 -CXXFLAGS = -fno-rtti LINK_COMPONENTS := $(TARGETS_TO_BUILD) ipo scalaropts linker bitreader bitwriter diff --git a/llvm/tools/opt/Makefile b/llvm/tools/opt/Makefile index 2f184a679b3..726cad87123 100644 --- a/llvm/tools/opt/Makefile +++ b/llvm/tools/opt/Makefile @@ -8,7 +8,6 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = opt -CXXFLAGS = -fno-rtti LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo |