* cris/Makefile.in (crt0.o): Add CFLAGS when compiling crt0.S.
This commit is contained in:
parent
cf632a487b
commit
911cc0c9f6
|
@ -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.
|
||||||
|
|
|
@ -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=$$?;; \
|
||||||
|
|
Loading…
Reference in New Issue