changeset 5274:f30e87f16d90 icedtea-2.5pre02

Include $(CFLAGS) in assembler stage
author andrew
date Fri, 26 Jul 2013 11:31:42 +0100
parents c8464a4d5b46
children 720c95f22663
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	Thu Feb 20 03:38:40 2014 +0000
+++ b/make/linux/makefiles/zeroshark.make	Fri Jul 26 11:31:42 2013 +0100
@@ -60,7 +60,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)