blob: 71bb077d3ddbd4f240b028f998d9bfaba9e31c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#===-- runtime/GCCLibraries/crtend/Makefile.am -------------*- Makefile -*--===#
#
# The LLVM Compiler Infrastructure
#
# This file was developed by Reid Spencer and is distributed under the
# University of Illinois Open Source License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
##===- 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.
#
##===----------------------------------------------------------------------===##
include $(top_srcdir)/Makefile_config
AggregateLib := $(BCDIR)/libcrtend.a
ComponentLibs := comp_main.bc comp_genericeh.bc comp_sjljeh.bc
## We build libcrtend.a from the four components described in the README.
$(AggregateLib) : $(BCDIR) $(ComponentLibs)
@echo Building final libcrtend.a file from bytecode components
$(AR) cr $(BCDIR)/libcrtend.a $(ComponentLibs)
all-am: $(AggregateLib)
clean-am: clean-crtend
$(RM) -f $(AggregateLib) *.bc
install-am: install-crtend
$(INSTALL_DATA) '$(AggregateLib)' $(DESTDIR)$(libdir)
MainObj := crtend.bc listend.bc
GenericEHObj := Exception.bc
SJLJEHObj := SJLJ-Exception.bc
# __main and ctor/dtor support component
comp_main.bc: $(MainObj)
@echo Linking $(notdir $@) component...
$(LLVMGCCLD) -link-as-library -internalize-public-api-file=$(srcdir)/comp_main.lst $(MainObj) -o $@
# Generic exception handling support runtime.
comp_genericeh.bc: $(GenericEHObj)
@echo Linking $(notdir $@) component...
$(LLVMGCCLD) -link-as-library -internalize-public-api-file=$(srcdir)/comp_genericeh.lst $(GenericEHObj) -o $@
# setjmp/longjmp exception handling support runtime.
comp_sjljeh.bc: $(SJLJEHObj)
@echo Linking $(notdir $@) component...
$(LLVMGCCLD) -link-as-library -internalize-public-api-file=$(srcdir)/comp_sjljeh.lst $(SJLJEHObj) -o $@
|