# HG changeset patch # User apangin # Date 1234757342 28800 # Node ID 3264b1424f72897e9f316dc18776c39c07520b69 # Parent fe3d7c11b4b71f5ebd76ab6712040c2057d17fa7# Parent 01ddca3f0730163304a5b70019187e0bc54bdf86 Merge diff -r fe3d7c11b4b7 -r 3264b1424f72 make/linux/makefiles/gcc.make --- a/make/linux/makefiles/gcc.make Tue Feb 10 18:39:09 2009 +0300 +++ b/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