summaryrefslogtreecommitdiff
path: root/csu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-05-20 23:50:12 +0000
committerUlrich Drepper <drepper@redhat.com>1997-05-20 23:50:12 +0000
commitee815d3f296df75d79709e2b57fcebf695fb36a8 (patch)
tree54ba14d8b69c8cb59bebdf42e9e68ace5a7ea359 /csu
parent4be6b7a59eb356565f6f0272329745bb313186c9 (diff)
($(objpfx)initfini.s): Add CPPFLAGS, CFLAGS and -g0 to command line of
compiler.
Diffstat (limited to 'csu')
-rw-r--r--csu/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/csu/Makefile b/csu/Makefile
index cba8a4a5f5..9eb36a7c52 100644
--- a/csu/Makefile
+++ b/csu/Makefile
@@ -75,7 +75,8 @@ $(objpfx)crt%.o: $(objpfx)crt%.S $(objpfx)defs.h
$(CC) -c -fPIC -g0 -I$(..) -I$(common-objpfx) -DASSEMBLER $< -o $@
$(objpfx)initfini.s: initfini.c
- $(CC) -S -fPIC -finhibit-size-directive $(no-exceptions) $< -o $@
+ $(CC) $(CPPFLAGS) $(CFLAGS) -g0 -S -fPIC -finhibit-size-directive \
+ $(no-exceptions) $< -o $@
$(objpfx)crti.S: $(objpfx)initfini.s
sed -n -e '1,/@HEADER_ENDS/p' \