From: Nick Clifton Date: Fri, 15 Jan 2016 08:18:13 +0000 (+0000) Subject: t-msp430 (lib2_mul_none.o): Only use the first dependency as the source file to be... X-Git-Tag: basepoints/gcc-7~1620 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdc27e509cbf4546f66a0581ce74d636e5fa888c;p=thirdparty%2Fgcc.git t-msp430 (lib2_mul_none.o): Only use the first dependency as the source file to be compiled. * config/msp430/t-msp430 (lib2_mul_none.o): Only use the first dependency as the source file to be compiled. (lib2_mul_16bit.o, lib2hw_mul_16.o, lib2hw_mul_32.o) (lib2hw_mul_f5.o): Likewise. From-SVN: r232402 --- diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index ec943f407424..4cd8f01addf6 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,10 @@ +2016-01-15 Nick Clifton + + * config/msp430/t-msp430 (lib2_mul_none.o): Only use the first + dependency as the source file to be compiled. + (lib2_mul_16bit.o, lib2hw_mul_16.o, lib2hw_mul_32.o) + (lib2hw_mul_f5.o): Likewise. + 2016-01-13 Michael Meissner * libgcc/config/rs6000/extendkftf2-sw.c: Revert 2016-01-13 change. diff --git a/libgcc/config/msp430/t-msp430 b/libgcc/config/msp430/t-msp430 index 3744cc42dded..562c458e23f5 100644 --- a/libgcc/config/msp430/t-msp430 +++ b/libgcc/config/msp430/t-msp430 @@ -44,19 +44,19 @@ LIB2ADD = \ HOST_LIBGCC2_CFLAGS += -Os -ffunction-sections -fdata-sections -mhwmult=none lib2_mul_none.o: $(srcdir)/config/msp430/lib2mul.c - $(gcc_compile) $^ -c -DMUL_NONE + $(gcc_compile) $< -c -DMUL_NONE lib2_mul_16bit.o: $(srcdir)/config/msp430/lib2mul.c - $(gcc_compile) $^ -c -DMUL_16 + $(gcc_compile) $< -c -DMUL_16 lib2hw_mul_16.o: $(srcdir)/config/msp430/lib2hw_mul.S - $(gcc_compile) $^ -c -DMUL_16 + $(gcc_compile) $< -c -DMUL_16 lib2hw_mul_32.o: $(srcdir)/config/msp430/lib2hw_mul.S - $(gcc_compile) $^ -c -DMUL_32 + $(gcc_compile) $< -c -DMUL_32 lib2hw_mul_f5.o: $(srcdir)/config/msp430/lib2hw_mul.S - $(gcc_compile) $^ -c -DMUL_F5 + $(gcc_compile) $< -c -DMUL_F5 libmul_none.a: lib2_mul_none.o $(AR_CREATE_FOR_TARGET) $@ $^