* cris/Makefile.in (crt0.o): Add CFLAGS when compiling crt0.S.

This commit is contained in:
Hans-Peter Nilsson 2007-12-01 13:14:07 +00:00
parent cf632a487b
commit 911cc0c9f6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-12-01 Hans-Peter Nilsson <hp@axis.com>
* cris/Makefile.in (crt0.o): Add CFLAGS when compiling crt0.S.
2007-11-06 Dave Brolley <brolley@redhat.com> 2007-11-06 Dave Brolley <brolley@redhat.com>
* syscall.h (SYS_reconfig): New macro. * syscall.h (SYS_reconfig): New macro.

View File

@ -182,7 +182,7 @@ crt0.o: lcrt0.o crt0.S
*) \ *) \
case "$?" in \ case "$?" in \
*crt0.S) \ *crt0.S) \
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -xassembler-with-cpp -c $(srcdir)/crt0.S;; \ $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c -xassembler-with-cpp $(srcdir)/crt0.S;; \
*) touch $@;; \ *) touch $@;; \
esac; \ esac; \
st=$$?;; \ st=$$?;; \