C++ support does not live in the C runtime any longer
authorChris Lattner <sabre@nondot.org>
Thu, 5 Aug 2004 02:28:17 +0000 (02:28 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 5 Aug 2004 02:28:17 +0000 (02:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15515 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/GCCLibraries/crtend/Makefile

index 7c61879f0d431be262455637775ea5cab50edd24..829563b58d9b4a77bdf09db0214107e4c5207f9b 100644 (file)
@@ -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 $@
-