From 84369dd94900b2406566d45d4ca5e95f2f2a26fc Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 23 Aug 2013 11:36:03 -0500 Subject: Always pass -headerpad_max_install_names to the linker We use install_name_tool pretty liberally, so we need to take steps to ensure libraries and executables are always linked with this flag. Closes Homebrew/homebrew#20233. Fixes Homebrew/homebrew#17984. Fixes Homebrew/homebrew#22078. --- Library/ENV/4.3/cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Library/ENV') diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index 62194c8dd..79fb57102 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -191,7 +191,12 @@ class Cmd syslibpath end def ldflags - libpath.to_flags('-L') + args = libpath.to_flags('-L') + case mode + when :ld then args << '-headerpad_max_install_names' + when :ccld then args << '-Wl,-headerpad_max_install_names' + end + args end def cppflags sys, opt = cpath -- cgit v1.2.3