Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
853f289f
Commit
853f289f
authored
Dec 07, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
See if vcbuild.bat can find what it wants on its own.
parent
055b3849
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
_setuplibuv.py
_setuplibuv.py
+4
-1
deps/libuv/vcbuild.bat
deps/libuv/vcbuild.bat
+1
-2
No files found.
_setuplibuv.py
View file @
853f289f
...
...
@@ -24,6 +24,8 @@ from distutils import log # pylint:disable=no-name-in-module
from
distutils.errors
import
DistutilsError
# pylint: disable=no-name-in-module,import-error
# Inspired by code from https://github.com/saghul/pyuv
# Note that they as of June 2017, they now use setuptools to build libuv
# See https://github.com/saghul/pyuv/commit/2c398a9fe47deaebbf47f7bd37d9bb0c350656d1#diff-b30741570389940d7935f51cd0c084cb
LIBUV_EMBED
=
should_embed
(
'libuv'
)
...
...
@@ -167,7 +169,8 @@ def configure_libuv(_bext, _ext):
if
WIN
:
prepare_windows_env
(
env
)
libuv_arch
=
{
'32bit'
:
'x86'
,
'64bit'
:
'x64'
}[
platform
.
architecture
()[
0
]]
system
([
"cmd"
,
"/E:ON"
,
"/V:ON"
,
"/C"
,
"..
\
\
..
\
\
appveyor
\
\
run_with_env.cmd"
,
system
([
"cmd"
,
"/E:ON"
,
"/V:ON"
,
"/C"
,
#"..\\..\\appveyor\\run_with_env.cmd",
'vcbuild.bat'
,
libuv_arch
,
'release'
],
cwd
=
libuv_dir
,
env
=
env
,
...
...
deps/libuv/vcbuild.bat
View file @
853f289f
...
...
@@ -109,8 +109,7 @@ goto select-target
if
not
defined
VS90COMNTOOLS
goto
vc
-set-notfound
if
not
exist
"
%VS9
0COMNTOOLS
%
\..\..\vc\vcvarsall.bat"
goto
vc
-set-notfound
call
"
%VS9
0COMNTOOLS
%
\..\..\vc\vcvarsall.bat"
%vs_toolset%
@rem
gevent
:
set
to
an
2005
instead
of
2008
because
2008
generates
too
new
a
solution
file
set
GYP_MSVS_VERSION
=
2005
set
GYP_MSVS_VERSION
=
2008
echo
Using
Visual
Studio
2008
goto
select
-target
...
...
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