mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Fixed paths to Windows build directories in build_ext.py
Use vsbuild instead of devenv in build.bat and _bsddb.vcproj
This commit is contained in:
parent
63cdb867f0
commit
3af3ecca92
4 changed files with 17 additions and 17 deletions
|
@ -182,13 +182,13 @@ class build_ext (Command):
|
|||
self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
|
||||
if MSVC_VERSION == 9:
|
||||
self.library_dirs.append(os.path.join(sys.exec_prefix,
|
||||
'PCBuild9'))
|
||||
'PCbuild'))
|
||||
elif MSVC_VERSION == 8:
|
||||
self.library_dirs.append(os.path.join(sys.exec_prefix,
|
||||
'PCBuild8', 'win32release'))
|
||||
'PC', 'VS8.0', 'win32release'))
|
||||
else:
|
||||
self.library_dirs.append(os.path.join(sys.exec_prefix,
|
||||
'PCBuild'))
|
||||
'PC', 'VS7.1'))
|
||||
|
||||
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
|
||||
# import libraries in its "Config" subdirectory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue