summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-05 02:28:17 +0000
committerChris Lattner <sabre@nondot.org>2004-08-05 02:28:17 +0000
commit0d5dc010fa14db5d3df731bcf1284db474aafb60 (patch)
treee595ad458e83a68877cbe2acfa977a4dc8acfdb7
parentfc9e8b6682064c48e2d6f4b2d7430f97ad7f1b82 (diff)
downloadllvm-0d5dc010fa14db5d3df731bcf1284db474aafb60.tar.gz
C++ support does not live in the C runtime any longer
llvm-svn: 15515
-rw-r--r--llvm/runtime/GCCLibraries/crtend/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/runtime/GCCLibraries/crtend/Makefile b/llvm/runtime/GCCLibraries/crtend/Makefile
index 7c61879f0d43..829563b58d9b 100644
--- a/llvm/runtime/GCCLibraries/crtend/Makefile
+++ b/llvm/runtime/GCCLibraries/crtend/Makefile
@@ -39,7 +39,7 @@ install-bytecode:: $(DESTDIR)$(bytecode_libdir)/libcrtend.a
# The four components described in the README
-Components := main genericeh sjljeh cxxeh
+Components := main genericeh sjljeh
ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
@@ -69,9 +69,4 @@ $(BUILD_OBJ_DIR)/BytecodeObj/comp_sjljeh.bc: $(SJLJEHObj)
@echo Linking $(notdir $@) component...
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst $(SJLJEHObj) -o $@
-# C++ exception handling support runtime.
-$(BUILD_OBJ_DIR)/BytecodeObj/comp_cxxeh.bc: $(CXXEHObj)
- @echo Linking $(notdir $@) component...
- $(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_cxxeh.lst $(CXXEHObj) -o $@
-