mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
63c8cc6dcd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12292 91177308-0d34-0410-b5e6-96231b3b80d8
78 lines
3.1 KiB
Makefile
78 lines
3.1 KiB
Makefile
##===- runtime/GCCLibraries/crtend/Makefile ----------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
#
|
|
# This directory contains the C and C++ runtime libraries for the LLVM GCC
|
|
# front-ends. See the README.txt file for more details.
|
|
#
|
|
# Since this archive has strange requirements, we use almost all custom rules
|
|
# for building it.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../../..
|
|
DONT_BUILD_RELINKED=1
|
|
|
|
MainSrc := crtend.c listend.ll
|
|
GenericEHSrc := Exception.cpp
|
|
SJLJEHSrc := SJLJ-Exception.cpp
|
|
CXXEHSrc := C++-Exception.cpp
|
|
Source := $(MainSrc) $(GenericEHSrc) $(SJLJEHSrc) $(CXXEHSrc)
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
# CRTEND_A - The result of making 'all' - the final archive file.
|
|
CRTEND_A = $(DESTLIBBYTECODE)/libcrtend.a
|
|
all:: $(CRTEND_A)
|
|
|
|
# Installation simply requires copying the archive to it's new home.
|
|
$(DESTDIR)$(bytecode_libdir)/libcrtend.a: $(CRTEND_A) $(DESTDIR)$(bytecode_libdir)
|
|
cp $< $@
|
|
|
|
install:: $(DESTDIR)$(bytecode_libdir)/libcrtend.a
|
|
install-bytecode:: $(DESTDIR)$(bytecode_libdir)/libcrtend.a
|
|
|
|
|
|
# The four components described in the README
|
|
Components := main genericeh sjljeh cxxeh
|
|
ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
|
|
|
|
|
|
# We build libcrtend.a from the four components described in the README.
|
|
$(CRTEND_A) : $(ComponentLibs) $(DESTLIBBYTECODE)/.dir
|
|
@echo Building final libcrtend.a file from components
|
|
$(VERB) $(AR) $@ $(ComponentLibs)
|
|
|
|
MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \
|
|
$(BUILD_OBJ_DIR)/BytecodeObj/listend.bc
|
|
GenericEHObj := $(BUILD_OBJ_DIR)/BytecodeObj/Exception.bc
|
|
SJLJEHObj := $(BUILD_OBJ_DIR)/BytecodeObj/SJLJ-Exception.bc
|
|
CXXEHObj := $(BUILD_OBJ_DIR)/BytecodeObj/C++-Exception.bc
|
|
|
|
# __main and ctor/dtor support component
|
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_main.bc: $(MainObj)
|
|
@echo Linking $(notdir $@) component...
|
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst $(MainObj) -o $@
|
|
|
|
# Generic exception handling support runtime.
|
|
$(BUILD_OBJ_DIR)/BytecodeObj/comp_genericeh.bc: $(GenericEHObj)
|
|
@echo Linking $(notdir $@) component...
|
|
$(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst $(GenericEHObj) -o $@
|
|
|
|
# setjmp/longjmp exception handling support runtime.
|
|
$(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 $@
|
|
|
|
|