diff options
| -rw-r--r-- | libc/sysdeps/linux/frv/Makefile | 6 | ||||
| -rw-r--r-- | libc/sysdeps/linux/i386/Makefile | 10 | ||||
| -rw-r--r-- | libc/sysdeps/linux/powerpc/Makefile | 10 | ||||
| -rw-r--r-- | utils/Makefile | 4 | 
4 files changed, 20 insertions, 10 deletions
| diff --git a/libc/sysdeps/linux/frv/Makefile b/libc/sysdeps/linux/frv/Makefile index 0c6978c5a..858b15383 100644 --- a/libc/sysdeps/linux/frv/Makefile +++ b/libc/sysdeps/linux/frv/Makefile @@ -23,7 +23,9 @@ ASFLAGS=$(CFLAGS)  CRT0_SRC = crt0.S  CRT0_OBJ = crt0.o crt1.o +ifeq $(strip $(UCLIBC_PIE_SUPPORT)),y)  SCRT0_OBJ = $(patsubst %,S%, $(CRT0_OBJ)) +endif  CRT0_DEPS=gmon-start.S  CTOR_TARGETS = crti.o crtn.o @@ -54,11 +56,11 @@ crtreloc.o: crtreloc.c  	$(CC) $(CFLAGS) -c $< -o $@  $(SCRT0_OBJ): $(CRT0_SRC) Scrtreloc.o -	$(CC) $(CFLAGS) -fPIE -DL_$* -r -nostdlib $< Scrtreloc.o -o $*.o +	$(CC) $(CFLAGS) $(PIEFLAG) -DL_$* -r -nostdlib $< Scrtreloc.o -o $*.o  	$(STRIPTOOL) -x -R .note -R .comment $*.o  Scrtreloc.o: crtreloc.c -	$(CC) $(CFLAGS) -fPIE -c $< -o $@ +	$(CC) $(CFLAGS) $(PIEFLAG) -c $< -o $@  $(CTOR_TARGETS): %.o : %.S  	$(CC) $(CFLAGS) -c $< -o $@ diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile index 9b2a36290..463dc64ee 100644 --- a/libc/sysdeps/linux/i386/Makefile +++ b/libc/sysdeps/linux/i386/Makefile @@ -23,7 +23,7 @@ ASFLAGS=$(CFLAGS)  CRT0_SRC = crt0.S  CRT0_OBJ = crt0.o crt1.o  ifeq ($(strip $(UCLIBC_PIE_SUPPORT)),y) -CRT0_OBJ += Scrt0.o Scrt1.o +SCRT0_OBJ = $(patsubst %,S%, $(CRT0_OBJ))  endif  CRT0_DEPS=gmon-start.S  CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o @@ -41,9 +41,9 @@ all: $(OBJS) $(LIBC)  $(LIBC): ar-target  -ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS) +ar-target: $(OBJS) $(CRT0_OBJ) $(SCRT0_OBJ) $(CTOR_TARGETS)  	$(AR) $(ARFLAGS) $(LIBC) $(OBJS) -	cp $(CRT0_OBJ) $(TOPDIR)lib/ +	cp $(CRT0_OBJ) $(SCRT0_OBJ) $(TOPDIR)lib/  ifeq ($(strip $(UCLIBC_PIE_SUPPORT)),y)  ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)  	$(RM) $(TOPDIR)lib/Scrt0.o @@ -56,6 +56,10 @@ $(CRT0_OBJ): $(CRT0_SRC)  	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o  	$(STRIPTOOL) -x -R .note -R .comment $*.o +$(SCRT0_OBJ): $(CRT0_SRC) +	$(CC) $(CFLAGS) $(PIEFLAG) -DL_$* $< -c -o $*.o +	$(STRIPTOOL) -x -R .note -R .comment $*.o +  $(SOBJS): %.o : %.S  	$(CC) $(CFLAGS) -c $< -o $@  	$(STRIPTOOL) -x -R .note -R .comment $*.o diff --git a/libc/sysdeps/linux/powerpc/Makefile b/libc/sysdeps/linux/powerpc/Makefile index cf8be499e..de750b460 100644 --- a/libc/sysdeps/linux/powerpc/Makefile +++ b/libc/sysdeps/linux/powerpc/Makefile @@ -23,7 +23,7 @@ ASFLAGS=$(CFLAGS)  CRT0_SRC = crt0.S  CRT0_OBJ = crt0.o crt1.o  ifeq ($(strip $(UCLIBC_PIE_SUPPORT)),y) -CRT0_OBJ += Scrt0.o Scrt1.o +SCRT0_OBJ = $(patsubst %,S%, $(CRT0_OBJ))  endif  CRT0_DEPS=gmon-start.S  CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o @@ -41,9 +41,9 @@ all: $(OBJS) $(LIBC)  $(LIBC): ar-target  -ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS) +ar-target: $(OBJS) $(CRT0_OBJ) $(SCRT0_OBJ) $(CTOR_TARGETS)  	$(AR) $(ARFLAGS) $(LIBC) $(OBJS) -	cp $(CRT0_OBJ) $(TOPDIR)lib/ +	cp $(CRT0_OBJ) $(SCRT0_OBJ) $(TOPDIR)lib/  ifeq ($(strip $(UCLIBC_PIE_SUPPORT)),y)  ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)  	$(RM) $(TOPDIR)lib/Scrt0.o @@ -56,6 +56,10 @@ $(CRT0_OBJ): $(CRT0_SRC)  	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o  	$(STRIPTOOL) -x -R .note -R .comment $*.o +$(SCRT0_OBJ): $(CRT0_SRC) +	$(CC) $(CFLAGS) $(PIEFLAG) -DL_$* $< -c -o $*.o +	$(STRIPTOOL) -x -R .note -R .comment $*.o +  $(SOBJS): %.o : %.S  	$(CC) $(CFLAGS) -c $< -o $@  	$(STRIPTOOL) -x -R .note -R .comment $*.o diff --git a/utils/Makefile b/utils/Makefile index c5c858195..2b5e30635 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -54,7 +54,7 @@ ldconfig:	ldconfig.c readsoname.c  	$(STRIPTOOL) -x -R .note -R .comment $@  ldd:	ldd.c -	$(CC) $(CFLAGS) $(XXFLAGS) -Wl,-s \ +	$(CC) $(CFLAGS) $(XXFLAGS) $(PIEFLAG) $(LDPIEFLAG) -Wl,-s \  		-DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \  		-DUCLIBC_LDSO=$(UCLIBC_LDSO) -I. -I../ldso/include \  		-nostdlib -o $@ $(BIN_START_FILES) $^ $(LDADD_LIBFLOAT) \ @@ -62,7 +62,7 @@ ldd:	ldd.c  	$(STRIPTOOL) -x -R .note -R .comment $@  iconv: ../libc/misc/wchar/wchar.c -	$(CC) $(CFLAGS) $(XXFLAGS) -Wl,-s -DL_iconv_main \ +	$(CC) $(CFLAGS) $(XXFLAGS) $(PIEFLAG) $(LDPIEFLAG) -Wl,-s -DL_iconv_main \  		-nostdlib -o $@ $(BIN_START_FILES) $^ $(LDADD_LIBFLOAT) \  		-L../lib -lc $(LIBGCC) $(END_FILES)  	$(STRIPTOOL) -x -R .note -R .comment $@ | 
