Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
1507bd55
Commit
1507bd55
authored
Sep 16, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document the directory separatory for include dir and library dir lists.
parent
4018076a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
command/build_ext.py
command/build_ext.py
+3
-2
No files found.
command/build_ext.py
View file @
1507bd55
...
...
@@ -49,6 +49,7 @@ class build_ext (Command):
# takes care of both command-line and client options
# in between initialize_options() and finalize_options())
sep_by
=
" (separated by '%s')"
%
os
.
pathsep
user_options
=
[
(
'build-lib='
,
'b'
,
"directory for compiled extension modules"
),
...
...
@@ -58,7 +59,7 @@ class build_ext (Command):
"ignore build-lib and put compiled extensions into the source "
+
"directory alongside your pure Python modules"
),
(
'include-dirs='
,
'I'
,
"list of directories to search for header files"
),
"list of directories to search for header files"
+
sep_by
),
(
'define='
,
'D'
,
"C preprocessor macros to define"
),
(
'undef='
,
'U'
,
...
...
@@ -66,7 +67,7 @@ class build_ext (Command):
(
'libraries='
,
'l'
,
"external C libraries to link with"
),
(
'library-dirs='
,
'L'
,
"directories to search for external C libraries"
),
"directories to search for external C libraries"
+
sep_by
),
(
'rpath='
,
'R'
,
"directories to search for shared C libraries at runtime"
),
(
'link-objects='
,
'O'
,
...
...
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