Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f19529cf
Commit
f19529cf
authored
Dec 12, 2012
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cross compiling issue in setup.py, ensure that lib_dirs and inc_dirs are
defined in cross compiling mode, too.
parent
08d5ca6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+3
-0
No files found.
Misc/NEWS
View file @
f19529cf
...
...
@@ -316,6 +316,9 @@ Tests
Build
-----
-
Fix
cross
compiling
issue
in
setup
.
py
,
ensure
that
lib_dirs
and
inc_dirs
are
defined
in
cross
compiling
mode
,
too
.
-
Issue
#
16593
:
Have
BSD
'make -s'
do
the
right
thing
,
thanks
to
Daniel
Shahaf
-
Issue
#
16262
:
fix
out
-
of
-
src
-
tree
builds
,
if
mercurial
is
not
installed
.
...
...
setup.py
View file @
f19529cf
...
...
@@ -506,6 +506,9 @@ class PyBuildExt(build_ext):
'/lib'
,
'/usr/lib'
,
]
inc_dirs
=
self
.
compiler
.
include_dirs
+
[
'/usr/include'
]
else
:
lib_dirs
=
[]
inc_dirs
=
[]
exts
=
[]
missing
=
[]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment