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
642c8a11
Commit
642c8a11
authored
Jun 04, 2004
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #926209: Patch to setup.py to run on x86_64 Linux.
parent
2d6783b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Misc/NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+1
-1
No files found.
Misc/NEWS
View file @
642c8a11
...
...
@@ -485,6 +485,9 @@ Tools/Demos
Build
-----
- In order to find libraries, setup.py now also looks in /lib64, for use
on AMD64.
- Bug #934635: Fixed a bug where the configure script couldn'
t
detect
getaddrinfo
()
properly
if
the
KAME
stack
had
SCTP
support
.
...
...
setup.py
View file @
642c8a11
...
...
@@ -264,7 +264,7 @@ class PyBuildExt(build_ext):
# lib_dirs and inc_dirs are used to search for files;
# if a file is found in one of those directories, it can
# be assumed that no additional -I,-L directives are needed.
lib_dirs
=
self
.
compiler
.
library_dirs
+
[
'/lib'
,
'/usr/lib'
]
lib_dirs
=
self
.
compiler
.
library_dirs
+
[
'/lib'
,
'/usr/lib'
,
'/usr/lib/lib64'
]
inc_dirs
=
self
.
compiler
.
include_dirs
+
[
'/usr/include'
]
exts
=
[]
...
...
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