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
b2b34005
Commit
b2b34005
authored
Nov 10, 2001
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The libraries argument was completely ignored, fixed. Reported by
Tom Loredo.
parent
f1285960
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Lib/distutils/mwerkscompiler.py
Lib/distutils/mwerkscompiler.py
+2
-1
No files found.
Lib/distutils/mwerkscompiler.py
View file @
b2b34005
...
...
@@ -16,7 +16,7 @@ import distutils.dir_util
import
mkcwproject
class
MWerksCompiler
(
CCompiler
)
:
"""Concrete class that implements an interface to M
icrosoft Visual C++
,
"""Concrete class that implements an interface to M
etroWerks CodeWarrior
,
as defined by the CCompiler abstract class."""
compiler_type
=
'mwerks'
...
...
@@ -150,6 +150,7 @@ class MWerksCompiler (CCompiler) :
if
not
dirname
in
sourcefiledirs
:
sourcefiledirs
.
append
(
dirname
)
settings
[
'sources'
]
=
sourcefilenames
settings
[
'libraries'
]
=
libraries
settings
[
'extrasearchdirs'
]
=
sourcefiledirs
+
include_dirs
+
library_dirs
if
self
.
dry_run
:
print
'CALLING LINKER IN'
,
os
.
getcwd
()
...
...
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