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
443f27cd
Commit
443f27cd
authored
Apr 19, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document the build process more precisely. Suggested by Hugh Sasse.
parent
450d0b9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
Modules/Setup.dist
Modules/Setup.dist
+15
-3
No files found.
Modules/Setup.dist
View file @
443f27cd
...
@@ -36,9 +36,20 @@
...
@@ -36,9 +36,20 @@
#
#
# Finally, if a line contains just the word "*shared*" (without the
# Finally, if a line contains just the word "*shared*" (without the
# quotes but with the stars), then the following modules will not be
# quotes but with the stars), then the following modules will not be
# built statically. The build process works like this:
#
# 1. Build all modules that are declared as static in Modules/Setup,
# combine them into libpythonxy.a, combine that into python.
# 2. Build all modules that are listed as shared in Modules/Setup.
# 3. Invoke setup.py. That builds all modules that
# a) are not builtin, and
# b) are not listed in Modules/Setup, and
# c) can be build on the target
#
# Therefore, modules declared to be shared will not be
# included in the config.c file, nor in the list of objects to be
# included in the config.c file, nor in the list of objects to be
# added to the library archive, and their linker options won't be
# added to the library archive, and their linker options won't be
# added to the linker options
, but r
ules to create their .o files and
# added to the linker options
. R
ules to create their .o files and
# their shared libraries will still be added to the Makefile, and
# their shared libraries will still be added to the Makefile, and
# their names will be collected in the Make variable SHAREDMODS. This
# their names will be collected in the Make variable SHAREDMODS. This
# is used to build modules as shared libraries. (They can be
# is used to build modules as shared libraries. (They can be
...
@@ -46,8 +57,9 @@
...
@@ -46,8 +57,9 @@
# toplevel "make install" target.) (For compatibility,
# toplevel "make install" target.) (For compatibility,
# *noconfig* has the same effect as *shared*.)
# *noconfig* has the same effect as *shared*.)
#
#
# In addition, *static* reverses this effect (negating a previous
# In addition, *static* explicitly declares the following modules to
# *shared* line).
# be static. Lines containing "*static*" and "*shared*" may thus
# alternate thoughout this file.
# NOTE: As a standard policy, as many modules as can be supported by a
# NOTE: As a standard policy, as many modules as can be supported by a
# platform should be present. The distribution comes with all modules
# platform should be present. The distribution comes with all modules
...
...
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