diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-14 08:26:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-14 08:26:02 +0000 |
commit | ab717d4eb20bf6b96685be07d23df9b068b5b29e (patch) | |
tree | c5eea89610862610a0b44d1e8c194649c0f618f4 | |
parent | ed3d3458eff834d82b01f4018f7750fba1449a07 (diff) |
Do not enable debugging for initfini.s and friends. Won't work anyways.
-Erik
-rw-r--r-- | libc/sysdeps/linux/common/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 009d0740d..0824b0e53 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -54,17 +54,17 @@ $(COBJS): %.o : %.c $(STRIPTOOL) -x -R .note -R .comment $*.o initfini.s: initfini.c - $(CC) $(CFLAGS) -c initfini.c -S -o initfini.s + $(CC) -Os -fno-builtin -c initfini.c -S -o initfini.s crti.S crtn.S: initfini.s $(TOPDIR)/extra/scripts/initfini.pl crti.o: crti.S - $(CC) $(CFLAGS) -c crti.S -o crti.o + $(CC) -Os -fno-builtin -c crti.S -o crti.o cp crti.o $(TOPDIR)lib/ crtn.o: crtn.S - $(CC) $(CFLAGS) -c crtn.S -o crtn.o + $(CC) -Os -fno-builtin -c crtn.S -o crtn.o cp crtn.o $(TOPDIR)lib/ clean: |