# HG changeset patch # User xdono # Date 1235776380 28800 # Node ID f9d5cfc2afa2b9bb1641e7f19531329c19546625 # Parent 69c752d998415145b20b87f51a3c3428ae715937# Parent dae503d9f04c1a11e182dbf7f770509c28dc0609 Merge diff -r dae503d9f04c -r f9d5cfc2afa2 make/linux/makefiles/gcc.make --- a/make/linux/makefiles/gcc.make Thu Feb 26 10:57:13 2009 -0800 +++ b/make/linux/makefiles/gcc.make Fri Feb 27 15:13:00 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