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
This commit is contained in:
Nick Clifton 2016-01-15 08:18:13 +00:00 committed by Nick Clifton
parent e93c66bc45
commit bdc27e509c
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2016-01-15 Nick Clifton <nickc@redhat.com>
* 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 <meissner@linux.vnet.ibm.com>
* libgcc/config/rs6000/extendkftf2-sw.c: Revert 2016-01-13 change.

View File

@ -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) $@ $^