changeset 3755:37b254871acb icedtea-2.3.12

Include $(CFLAGS) in assembler stage
author andrew
date Fri, 26 Jul 2013 11:31:42 +0100
parents 799641e9320f
children a6502a8a6b31
files make/linux/makefiles/zeroshark.make
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/make/linux/makefiles/zeroshark.make	Fri Jul 26 09:51:14 2013 +0100
+++ b/make/linux/makefiles/zeroshark.make	Fri Jul 26 11:31:42 2013 +0100
@@ -58,7 +58,7 @@
 %.o: %.S
 	@echo Assembling $<
 	$(QUIETLY) $(REMOVE_TARGET)
-	$(COMPILE.CC) -o $@ $< $(COMPILE_DONE)
+	$(COMPILE.CC) $(CFLAGS) -o $@ $< $(COMPILE_DONE)
 
 # The copied fdlibm routines in sharedRuntimeTrig.o must not be optimized
 OPT_CFLAGS/sharedRuntimeTrig.o = $(OPT_CFLAGS/NOOPT)