/hg/release/icedtea7-forest-2.3/hotspot: Use $(CC) to compile mk...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Wed Jul 17 05:55:49 PDT 2013


changeset 4e032c676dc8 in /hg/release/icedtea7-forest-2.3/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.3/hotspot?cmd=changeset;node=4e032c676dc8
author: andrew
date: Wed Jul 17 13:52:07 2013 +0100

	Use $(CC) to compile mkbc instead of $(CC_COMPILE) to avoid C++-only flags


diffstat:

 make/linux/makefiles/zeroshark.make |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (15 lines):

diff -r 84b9ad961553 -r 4e032c676dc8 make/linux/makefiles/zeroshark.make
--- a/make/linux/makefiles/zeroshark.make	Fri Jul 12 22:18:15 2013 +0100
+++ b/make/linux/makefiles/zeroshark.make	Wed Jul 17 13:52:07 2013 +0100
@@ -44,9 +44,10 @@
 	@echo Generatine ARM assembler bytecode sequences
 	$(CC_COMPILE) -E -x c++ - < $< | ./mkbc - $@ $(COMPILE_DONE)
 
+# Can't use $(CC_COMPILE) as it contains C++ flags
 mkbc:	$(GAMMADIR)/tools/mkbc.c
 	@echo Compiling mkbc tool
-	$(CC_COMPILE) -o $@ $< $(COMPILE_DONE)
+	$(CC) -o $@ $< $(COMPILE_DONE)
 
 mkoffsets:	asm_helper.cpp
 	@echo Compiling offset generator



More information about the distro-pkg-dev mailing list