about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-26 01:49:14 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-26 01:49:14 -0400
commitc5e34dabbb47d8e97a4deccbb421e0cd93c0094b (patch)
tree4a5c7acc2af2d931ad9a9eeeede865e772344531 /Makefile
parentf9dd79c8d191a8a5356d146c7ccf956677fea4e9 (diff)
downloadmusl-c5e34dabbb47d8e97a4deccbb421e0cd93c0094b.tar.gz
musl-c5e34dabbb47d8e97a4deccbb421e0cd93c0094b.tar.xz
musl-c5e34dabbb47d8e97a4deccbb421e0cd93c0094b.zip
new mostly-C crt1 implementation
the only immediate effect of this commit is enabling PIE support on
some archs that did not previously have any Scrt1.s, since the
existing asm files for crt1 override this C code. so some of the
crt_arch.h files committed are only there for the sake of documenting
what their archs "would do" if they used the new C-based crt1.

the expectation is that new archs should use this new system rather
than using heavy asm for crt1. aside from being easier and less
error-prone, it also ensures that PIE support is available immediately
(since Scrt1.o is generated from the same C source, using -fPIC)
rather than having to be added as an afterthought in the porting
process.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2cd2342a..96910bd2 100644
--- a/Makefile
+++ b/Makefile
@@ -80,6 +80,10 @@ include/bits/alltypes.h: include/bits/alltypes.h.in include/alltypes.h.in tools/
 
 src/ldso/dynlink.lo: arch/$(ARCH)/reloc.h
 
+crt/crt1.o crt/Scrt1.o: $(wildcard arch/$(ARCH)/crt_arch.h)
+
+crt/Scrt1.o: CFLAGS += -fPIC
+
 OPTIMIZE_SRCS = $(wildcard $(OPTIMIZE_GLOBS:%=src/%))
 $(OPTIMIZE_SRCS:%.c=%.o) $(OPTIMIZE_SRCS:%.c=%.lo): CFLAGS += -O3