Pay attention to -R entries in LDFLAGS.

This commit is contained in:
Skip Montanaro 2008-10-07 02:02:00 +00:00
parent 0d8372bdb9
commit a46ed915fa
1 changed files with 2 additions and 1 deletions

View File

@ -320,12 +320,13 @@ class PyBuildExt(build_ext):
# the environment variable is not set even though the value were passed # the environment variable is not set even though the value were passed
# into configure and stored in the Makefile (issue found on OS X 10.3). # into configure and stored in the Makefile (issue found on OS X 10.3).
for env_var, arg_name, dir_list in ( for env_var, arg_name, dir_list in (
('LDFLAGS', '-R', self.compiler.runtime_library_dirs),
('LDFLAGS', '-L', self.compiler.library_dirs), ('LDFLAGS', '-L', self.compiler.library_dirs),
('CPPFLAGS', '-I', self.compiler.include_dirs)): ('CPPFLAGS', '-I', self.compiler.include_dirs)):
env_val = sysconfig.get_config_var(env_var) env_val = sysconfig.get_config_var(env_var)
if env_val: if env_val:
# To prevent optparse from raising an exception about any # To prevent optparse from raising an exception about any
# options in env_val that is doesn't know about we strip out # options in env_val that it doesn't know about we strip out
# all double dashes and any dashes followed by a character # all double dashes and any dashes followed by a character
# that is not for the option we are dealing with. # that is not for the option we are dealing with.
# #