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
1dc19ba2
Commit
1dc19ba2
authored
Aug 08, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed
parent
a93b504a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
33 deletions
+0
-33
Modules/bindit
Modules/bindit
+0
-33
No files found.
Modules/bindit
deleted
100755 → 0
View file @
a93b504a
#!/bin/ksh
#################################
# AIX shared library helper #
#################################
# ------------------------------------------------------------
# This script should be in the Modules directory, and I run it
# (from there) after having built all the shared objects.
# ------------------------------------------------------------
# --------------------------------------------------
# Create the export file which will list all symbols
# that the statically linked python executable has
# to make available to dynamically loaded modules.
# --------------------------------------------------
sort
-u
*
.imp
>
python.exp
# ---------------------------------------------------------------------
# Link the python executable. I think this is exactly the same command
# which the unmodified python makefile comes up with, except for the
# addition of the -bE: argument.
# ---------------------------------------------------------------------
cc
-O
main.o config.o getpath.o libModules.a ../Python/libPython.a
\
../Objects/libObjects.a ../Parser/libParser.a
-lm
-lc
-lg
\
-H512
-T512
-bE
:python.exp
\
-o
python
# -----------------------------------------------------------------
# Install the Python executable up one directory from Modules (just
# like the unmodified makefile does).
# -----------------------------------------------------------------
mv
python ..
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