From f168b7551cf0822aba65d22a0991fb4825cd8402 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 29 Nov 2003 10:24:57 +0000 Subject: [PATCH] Build _lib_crtend.a, not crtend.a git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10260 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtime/GCCLibraries/crtend/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile index a7f2c7a9d77..0984760cba4 100644 --- a/runtime/GCCLibraries/crtend/Makefile +++ b/runtime/GCCLibraries/crtend/Makefile @@ -27,14 +27,14 @@ Source := $(MainSrc) $(GenericEHSrc) $(SJLJEHSrc) $(CXXEHSrc) include $(LEVEL)/Makefile.common # CRTEND_A - The result of making 'all' - the final archive file. -CRTEND_A = $(DESTLIBBYTECODE)/crtend.a +CRTEND_A = $(DESTLIBBYTECODE)/libcrtend.a all:: $(CRTEND_A) # Installation simply requires copying the archive to it's new home. -$(LLVMGCCDIR)/bytecode-libs/crtend.a: $(CRTEND_A) +$(LLVMGCCDIR)/bytecode-libs/libcrtend.a: $(CRTEND_A) cp $< $@ -install:: $(LLVMGCCDIR)/bytecode-libs/crtend.a +install:: $(LLVMGCCDIR)/bytecode-libs/libcrtend.a # The four components described in the README @@ -42,9 +42,9 @@ Components := main genericeh sjljeh cxxeh ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc) -# We build crtend.a from the four components described in the README. +# We build libcrtend.a from the four components described in the README. $(CRTEND_A) : $(ComponentLibs) - @echo Building final crtend.a file from components + @echo Building final libcrtend.a file from components $(VERB) $(AR) $@ $(ComponentLibs) MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \