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
ad8054f8
Commit
ad8054f8
authored
Mar 19, 2010
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #2698 - now reads the compiler option when creating the compiler
parent
1e6721ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
command/build_ext.py
command/build_ext.py
+1
-1
tests/test_build_ext.py
tests/test_build_ext.py
+1
-0
No files found.
command/build_ext.py
View file @
ad8054f8
...
...
@@ -310,7 +310,7 @@ class build_ext(Command):
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
self
.
compiler
=
new_compiler
(
compiler
=
None
,
self
.
compiler
=
new_compiler
(
compiler
=
self
.
compiler
,
verbose
=
self
.
verbose
,
dry_run
=
self
.
dry_run
,
force
=
self
.
force
)
...
...
tests/test_build_ext.py
View file @
ad8054f8
...
...
@@ -329,6 +329,7 @@ class BuildExtTestCase(TempdirManager,
self
.
assertEquals
(
so_dir
,
other_tmp_dir
)
cmd
.
inplace
=
0
cmd
.
compiler
=
None
cmd
.
run
()
so_file
=
cmd
.
get_outputs
()[
0
]
self
.
assertTrue
(
os
.
path
.
exists
(
so_file
))
...
...
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