Commit 77d8dbc1 authored by doko@ubuntu.com's avatar doko@ubuntu.com

- Issue #17086: Search the include and library directories provided by the

  compiler.
parent 3218f651
......@@ -11,6 +11,9 @@ Build
- Issue #17682: Add the _io module to Modules/Setup.dist (commented out).
- Issue #17086: Search the include and library directories provided by the
compiler.
Core and Builtins
-----------------
......
......@@ -439,6 +439,7 @@ class PyBuildExt(build_ext):
# Ensure that /usr/local is always used
add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
self.add_gcc_paths()
self.add_multiarch_paths()
# Add paths specified in the environment variables LDFLAGS and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment