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
13980451
Commit
13980451
authored
Aug 13, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a whinging comment about the ugliness of constructing the BCPP
argument list.
parent
b1dceae3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
Lib/distutils/bcppcompiler.py
Lib/distutils/bcppcompiler.py
+10
-0
No files found.
Lib/distutils/bcppcompiler.py
View file @
13980451
...
@@ -253,6 +253,16 @@ class BCPPCompiler(CCompiler) :
...
@@ -253,6 +253,16 @@ class BCPPCompiler(CCompiler) :
ld_args
.
extend
(
objects
)
# list of object files
ld_args
.
extend
(
objects
)
# list of object files
# XXX the command-line syntax for Borland C++ is a bit wonky;
# certain filenames are jammed together in one big string, but
# comma-delimited. This doesn't mesh too well with the
# Unix-centric attitude (with a DOS/Windows quoting hack) of
# 'spawn()', so constructing the argument list is a bit
# awkward. Note that doing the obvious thing and jamming all
# the filenames and commas into one argument would be wrong,
# because 'spawn()' would quote any filenames with spaces in
# them. Arghghh!. Apparently it works fine as coded...
# name of dll file
# name of dll file
ld_args
.
extend
([
','
,
output_filename
])
ld_args
.
extend
([
','
,
output_filename
])
# no map file and start libraries
# no map file and start libraries
...
...
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