changeset in /hg/icedtea: 2008-03-11 Matthias Klose <doko at ubun...
doko at ubuntu.com
doko at ubuntu.com
Thu May 29 14:12:26 PDT 2008
changeset 47561b02c0e7 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=47561b02c0e7
description:
2008-03-11 Matthias Klose <doko at ubuntu.com>
* patches/icedtea-gcc-suffix.patch: Update, use GCC_SUFFIX in more
places.
diffstat:
2 files changed, 29 insertions(+)
ChangeLog | 5 +++++
patches/icedtea-gcc-suffix.patch | 24 ++++++++++++++++++++++++
diffs (43 lines):
diff -r 33b97b19ea82 -r 47561b02c0e7 ChangeLog
--- a/ChangeLog Tue Mar 11 18:46:12 2008 +0100
+++ b/ChangeLog Tue Mar 11 18:49:11 2008 +0100
@@ -1,3 +1,8 @@ 2008-03-11 Matthias Klose <doko at ubuntu
+2008-03-11 Matthias Klose <doko at ubuntu.com>
+
+ * patches/icedtea-gcc-suffix.patch: Update, use GCC_SUFFIX in more
+ places.
+
2008-03-11 Matthias Klose <doko at ubuntu.com>
* configure.ac: Check for zip and unzip.
diff -r 33b97b19ea82 -r 47561b02c0e7 patches/icedtea-gcc-suffix.patch
--- a/patches/icedtea-gcc-suffix.patch Tue Mar 11 18:46:12 2008 +0100
+++ b/patches/icedtea-gcc-suffix.patch Tue Mar 11 18:49:11 2008 +0100
@@ -46,3 +46,27 @@
endif
ifneq ("$(findstring sparc,$(ARCH))", "")
# sparc or sparcv9
+--- openjdk/corba/make/common/shared/Compiler-gcc.gmk~ 2008-01-14 14:05:43.738465508 +0100
++++ openjdk/corba/make/common/shared/Compiler-gcc.gmk 2008-01-14 14:19:33.640984398 +0100
+@@ -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