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
a1548e54
Commit
a1548e54
authored
Feb 20, 2006
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
7a7a2802
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
msvccompiler.py
msvccompiler.py
+3
-3
No files found.
msvccompiler.py
View file @
a1548e54
...
...
@@ -184,7 +184,7 @@ def get_build_architecture():
return "
Intel
"
j = string.find(sys.version, "
)
", i)
return sys.version[i+len(prefix):j]
class MSVCCompiler (CCompiler) :
...
...
@@ -232,7 +232,7 @@ class MSVCCompiler (CCompiler) :
else:
# Win64. Assume this was built with the platform SDK
self.__product = "
Microsoft
SDK
compiler
%
s
" % (self.__version + 6)
self.initialized = False
def initialize(self):
...
...
@@ -281,7 +281,7 @@ class MSVCCompiler (CCompiler) :
self.compile_options = [ '
/
nologo
', '
/
Ox
', '
/
MD
', '
/
W3
', '
/
GS
-
' ,
'
/
DNDEBUG
']
self.compile_options_debug = ['
/
nologo
', '
/
Od
', '
/
MDd
', '
/
W3
', '
/
GS
-
',
'
/
Z7
', '
/
D_DEBUG
']
'
/
Z7
', '
/
D_DEBUG
']
self.ldflags_shared = ['
/
DLL
', '
/
nologo
', '
/
INCREMENTAL
:
NO
']
if self.__version >= 7:
...
...
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