diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2007-12-01 13:14:07 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2007-12-01 13:14:07 +0000 |
commit | 911cc0c9f6de5fe68f9e3437418f86240c4f2b57 (patch) | |
tree | 077e1aa8bff1b9e7c2c932354e4899118c430ea2 | |
parent | cf632a487b6748b636ceb9d09e30a7ed7f29dedd (diff) | |
download | cygnal-911cc0c9f6de5fe68f9e3437418f86240c4f2b57.tar.gz cygnal-911cc0c9f6de5fe68f9e3437418f86240c4f2b57.tar.bz2 cygnal-911cc0c9f6de5fe68f9e3437418f86240c4f2b57.zip |
* cris/Makefile.in (crt0.o): Add CFLAGS when compiling crt0.S.
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/cris/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index c559cadf4..07dc11d45 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -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> * syscall.h (SYS_reconfig): New macro. diff --git a/libgloss/cris/Makefile.in b/libgloss/cris/Makefile.in index eac0f32e7..0ec0678d6 100644 --- a/libgloss/cris/Makefile.in +++ b/libgloss/cris/Makefile.in @@ -182,7 +182,7 @@ crt0.o: lcrt0.o crt0.S *) \ case "$?" in \ *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 $@;; \ esac; \ st=$$?;; \ |