Merge
authorapangin
Sun, 15 Feb 2009 20:09:02 -0800
changeset 2116 57c4d9c2bc0c
parent 2013 49e915da0905 (current diff)
parent 2115 28000d78abfa (diff)
child 2117 85a5555dcb11
child 2118 8c74ec057466
Merge
--- a/hotspot/make/linux/makefiles/gcc.make	Tue Feb 10 18:39:09 2009 +0300
+++ b/hotspot/make/linux/makefiles/gcc.make	Sun Feb 15 20:09:02 2009 -0800
@@ -131,6 +131,14 @@
 # Enable linker optimization
 LFLAGS += -Xlinker -O1
 
+# If this is a --hash-style=gnu system, use --hash-style=both
+#   The gnu .hash section won't work on some Linux systems like SuSE 10.
+_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
+ifneq ($(_HAS_HASH_STYLE_GNU),)
+  LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
+endif
+LFLAGS += $(LDFLAGS_HASH_STYLE)
+
 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
 MAPFLAG = -Xlinker --version-script=FILENAME