From: Sean McGovern Date: Wed, 16 Mar 2011 01:01:17 +0000 (+0000) Subject: darwin: use -read_only_relocs flag only on 32-bit x86 X-Git-Tag: v0.7b1~347 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dff68563d846274cee0a2cd2430d6f1a2cb51eaa;p=platform%2Fupstream%2Flibav.git darwin: use -read_only_relocs flag only on 32-bit x86 Avoids the linker warning: ld: warning: -read_only_relocs cannot be used with x86_64 Signed-off-by: Mans Rullgard --- diff --git a/configure b/configure index 27d09f6..15d45a8 100755 --- a/configure +++ b/configure @@ -2386,7 +2386,8 @@ case $target_os in enable malloc_aligned gas="gas-preprocessor.pl $cc" enabled ppc && add_asflags -force_cpusubtype_ALL - SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress' + SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)' + enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress strip="${strip} -x" add_ldflags -Wl,-dynamic,-search_paths_first SLIBSUF=".dylib"