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
07671cdc
Commit
07671cdc
authored
Aug 04, 2016
by
Jason R. Coombs
Committed by
GitHub
Aug 04, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #715 from JGoutin/patch-1
#694 Patch distutils._msvccompiler.library_dir_option
parents
aad4a691
7b1fa764
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
setuptools/msvc.py
setuptools/msvc.py
+27
-0
No files found.
setuptools/msvc.py
View file @
07671cdc
...
...
@@ -85,6 +85,13 @@ def patch_for_specialized_compiler():
except
Exception
:
pass
try
:
# Patch distutils._msvccompiler.MSVCCompiler.library_dir_option
unpatched
[
'msvc14_library_dir_option'
]
=
msvc14compiler
.
MSVCCompiler
.
library_dir_option
msvc14compiler
.
MSVCCompiler
.
library_dir_option
=
msvc14_library_dir_option
except
Exception
:
pass
def
msvc9_find_vcvarsall
(
version
):
"""
...
...
@@ -212,6 +219,26 @@ def msvc14_get_vc_env(plat_spec):
raise
def
msvc14_library_dir_option
(
self
,
dir
):
"""
Patched "distutils._msvccompiler.MSVCCompiler.library_dir_option"
to fix unquoted path in "
\
LIBPATH
"
argument when a space is on path.
Parameters
----------
dir: str
Path to convert in "
\
LIBPATH
"
argument.
Return
------
"
\
LIBPATH
"
argument: str
"""
if
' '
in
dir
and
'"'
not
in
dir
:
# Quote if space and not already quoted
dir
=
'"%s"'
%
dir
return
unpatched
[
'msvc14_library_dir_option'
](
self
,
dir
)
def
_augment_exception
(
exc
,
version
,
arch
=
''
):
"""
Add details to the exception message to help guide the user
...
...
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