changeset in /hg/icedtea: 2007-10-03 Matthias Klose <doko at ubun...
Joshua Sumali
jsumali at redhat.com
Thu Oct 18 03:02:30 PDT 2007
changeset bdc055df3bc9 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=bdc055df3bc9
description:
2007-10-03 Matthias Klose <doko at ubuntu.com>
* Makefile.am: Use DISTRIBUTION_PATCHES and gcc-suffix.
* Makefile.in: Regenerated.
* patches/icedtea-gcc-suffix.patch: New patch.
diffstat:
3 files changed, 57 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++
Makefile.am | 4 ++-
patches/icedtea-gcc-suffix.patch | 48 ++++++++++++++++++++++++++++++++++++++
diffs (79 lines):
diff -r 7b5d5a69a578 -r bdc055df3bc9 ChangeLog
--- a/ChangeLog Wed Oct 03 13:27:46 2007 -0400
+++ b/ChangeLog Wed Oct 03 14:46:43 2007 -0400
@@ -1,3 +1,9 @@ 2007-10-02 Lillian Angel <langel at redha
+2007-10-03 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am: Use DISTRIBUTION_PATCHES and gcc-suffix.
+ * Makefile.in: Regenerated.
+ * patches/icedtea-gcc-suffix.patch: New patch.
+
2007-10-02 Lillian Angel <langel at redhat.com>
* .hgignore: Updated.
diff -r 7b5d5a69a578 -r bdc055df3bc9 Makefile.am
--- a/Makefile.am Wed Oct 03 13:27:46 2007 -0400
+++ b/Makefile.am Wed Oct 03 14:46:43 2007 -0400
@@ -142,7 +142,9 @@ ICEDTEA_PATCHES = \
patches/icedtea-use-system-tzdata.patch \
patches/icedtea-headers.patch \
patches/icedtea-ant.patch \
- $(FAST_BUILD_PATCH)
+ patches/icedtea-gcc-suffix.patch \
+ $(FAST_BUILD_PATCH) \
+ $(DISTRIBUTION_PATCHES)
if WITH_CACAO
ICEDTEA_PATCHES += \
diff -r 7b5d5a69a578 -r bdc055df3bc9 patches/icedtea-gcc-suffix.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-gcc-suffix.patch Wed Oct 03 14:46:43 2007 -0400
@@ -0,0 +1,48 @@
+--- openjdk/hotspot/agent/src/os/linux/Makefile~ 2007-08-02 09:16:50.000000000 +0200
++++ openjdk/hotspot/agent/src/os/linux/Makefile 2007-08-08 17:00:11.204338801 +0200
+@@ -23,7 +23,7 @@
+ #
+
+ ARCH := $(shell if ([ `uname -m` = "ia64" ]) ; then echo ia64 ; elif ([ `uname -m` = "x86_64" ]) ; then echo amd64; elif ([ `uname -m` = "sparc64" ]) ; then echo sparc; else echo i386 ; fi )
+-GCC = gcc
++GCC = gcc$(GCC_SUFFIX)
+
+ JAVAH = ${JAVA_HOME}/bin/javah
+
+--- openjdk/hotspot/build/linux/makefiles/gcc.make~ 2007-08-08 16:13:12.281815996 +0200
++++ openjdk/hotspot/build/linux/makefiles/gcc.make 2007-08-08 16:36:52.573240769 +0200
+@@ -25,8 +25,8 @@
+ #------------------------------------------------------------------------
+ # CC, CPP & AS
+
+-CPP = g++
+-CC = gcc
++CPP = g++$(GCC_SUFFIX)
++CC = gcc$(GCC_SUFFIX)
+ AS = $(CC) -c
+
+ # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
+--- openjdk/j2se/make/common/shared/Compiler-gcc.gmk~ 2007-08-02 09:17:53.000000000 +0200
++++ openjdk/j2se/make/common/shared/Compiler-gcc.gmk 2007-08-08 16:30:52.857814544 +0200
+@@ -58,17 +58,17 @@
+ ifeq ($(PLATFORM), linux)
+
+ # Settings specific to Linux
+- CC = $(COMPILER_PATH)gcc
+- CPP = $(COMPILER_PATH)gcc -E
++ CC = $(COMPILER_PATH)gcc$(GCC_SUFFIX)
++ CPP = $(COMPILER_PATH)gcc$(GCC_SUFFIX) -E
+ # statically link libstdc++ before C++ ABI is stablized on Linux
+ STATIC_CXX = true
+ ifeq ($(STATIC_CXX),true)
+ # g++ always dynamically links libstdc++, even we use "-Wl,-Bstatic -lstdc++"
+ # We need to use gcc to statically link the C++ runtime. gcc and g++ use
+ # the same subprocess to compile C++ files, so it is OK to build using gcc.
+- CXX = $(COMPILER_PATH)gcc
++ CXX = $(COMPILER_PATH)gcc$(GCC_SUFFIX)
+ else
+- CXX = $(COMPILER_PATH)g++
++ CXX = $(COMPILER_PATH)g++$(GCC_SUFFIX)
+ endif
+ ifneq ("$(findstring sparc,$(ARCH))", "")
+ # sparc or sparcv9
More information about the distro-pkg-dev
mailing list