diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mep/t-mep | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25bcebb2a25..38114b3b5ef 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-08-17 Nick Clifton <nickc@redhat.com> + + * config/mep/t-mep (mep-pragma.o): Use $(COMPILER) to compile + mep-pragma.c. + 2012-08-17 Georg-Johann Lay <avr@gjlay.de> * config/avr/t-avr (gen-avr-mmcu-texi): Use $(CC) to compile diff --git a/gcc/config/mep/t-mep b/gcc/config/mep/t-mep index 34e95810377..cbc19fc671e 100644 --- a/gcc/config/mep/t-mep +++ b/gcc/config/mep/t-mep @@ -30,7 +30,7 @@ mep-pragma.o: $(srcdir)/config/mep/mep-pragma.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TM_H) $(TREE_H) $(RTL_H) $(C_PRAGMA_H) \ $(CPPLIB_H) hard-reg-set.h output.h $(srcdir)/config/mep/mep-protos.h \ function.h insn-config.h reload.h $(TARGET_H) - $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< + $(COMPILER) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< MULTILIB_OPTIONS = mel mall-opts mfar MULTILIB_DIRNAMES = el allopt far |