Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d5ca6 commit f19529cCopy full SHA for f19529c
2 files changed
Misc/NEWS
@@ -316,6 +316,9 @@ Tests
316
Build
317
-----
318
319
+- Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs are
320
+ defined in cross compiling mode, too.
321
+
322
- Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf
323
324
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
setup.py
@@ -506,6 +506,9 @@ def detect_modules(self):
506
'/lib', '/usr/lib',
507
]
508
inc_dirs = self.compiler.include_dirs + ['/usr/include']
509
+ else:
510
+ lib_dirs = []
511
+ inc_dirs = []
512
exts = []
513
missing = []
514
0 commit comments