X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=Makefile;h=683850d30078075a71741a3895ed8df7705acbb4;hp=1bdea61eed0932952491eb8903bb763db52260e8;hb=aaa9eb5101e3a748218fb9373dd9655b50582da2;hpb=f8e054f95197bf9c4463122fba3ebc586d4a99f6 diff --git a/Makefile b/Makefile index 1bdea61e..683850d3 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,13 @@ GENH = include/bits/alltypes.h IMPH = src/internal/stdio_impl.h src/internal/pthread_impl.h src/internal/libc.h LDFLAGS = +LIBCC = -lgcc CPPFLAGS = CFLAGS = -Os -pipe CFLAGS_C99FSE = -std=c99 -ffreestanding -nostdinc CFLAGS_ALL = $(CFLAGS_C99FSE) -CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I./src/internal -I./include -I./arch/$(ARCH) +CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I./arch/$(ARCH) -I./src/internal -I./include CFLAGS_ALL += $(CPPFLAGS) $(CFLAGS) CFLAGS_ALL_STATIC = $(CFLAGS_ALL) CFLAGS_ALL_SHARED = $(CFLAGS_ALL) -fPIC -DSHARED -O3 @@ -76,6 +77,8 @@ include/bits/alltypes.h.sh: include/bits include/bits/alltypes.h: include/bits/alltypes.h.sh sh $< > $@ +src/ldso/dynlink.lo: arch/$(ARCH)/reloc.h + %.o: $(ARCH)/%.s $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $< @@ -91,7 +94,7 @@ include/bits/alltypes.h: include/bits/alltypes.h.sh lib/libc.so: $(LOBJS) $(CC) $(CFLAGS_ALL_SHARED) $(LDFLAGS) -nostdlib -shared \ -Wl,-e,_start -Wl,-Bsymbolic-functions \ - -Wl,-soname=libc.so -o $@ $(LOBJS) -lgcc + -Wl,-soname=libc.so -o $@ $(LOBJS) $(LIBCC) lib/libc.a: $(OBJS) rm -f $@