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
30a2c6c8
Commit
30a2c6c8
authored
Nov 11, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More debugging
parent
6a1a1b5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile
Makefile
+1
-2
_setupares.py
_setupares.py
+3
-0
No files found.
Makefile
View file @
30a2c6c8
...
@@ -163,8 +163,7 @@ develop:
...
@@ -163,8 +163,7 @@ develop:
# Then start installing our deps so they can be cached. Note that use of --build-options / --global-options / --install-options
# Then start installing our deps so they can be cached. Note that use of --build-options / --global-options / --install-options
# disables the cache.
# disables the cache.
# We need wheel>=0.26 on Python 3.5. See previous revisions.
# We need wheel>=0.26 on Python 3.5. See previous revisions.
${PIP}
install
-v
-U
-r
dev-requirements.txt
${PIP}
install
-U
-r
dev-requirements.txt
cat
deps/c-ares/ares_build.h
lint-py27
:
$(PY27)
lint-py27
:
$(PY27)
PYTHON
=
python2.7.13
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.13/bin:
$(PATH)
make develop travis_test_linters
PYTHON
=
python2.7.13
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.13/bin:
$(PATH)
make develop travis_test_linters
...
...
_setupares.py
View file @
30a2c6c8
...
@@ -43,6 +43,7 @@ ares_configure_command = ' '.join([
...
@@ -43,6 +43,7 @@ ares_configure_command = ' '.join([
" && if [ -r ares_build.h ]; then cp ares_build.h ares_build.h.orig; fi "
,
" && if [ -r ares_build.h ]; then cp ares_build.h ares_build.h.orig; fi "
,
" && sh ./configure --disable-dependency-tracking "
+
_m32
+
"CONFIG_COMMANDS= "
,
" && sh ./configure --disable-dependency-tracking "
+
_m32
+
"CONFIG_COMMANDS= "
,
" && cp ares_config.h ares_build.h
\
"
$OLDPWD
\
"
"
,
" && cp ares_config.h ares_build.h
\
"
$OLDPWD
\
"
"
,
" && cat ares_build.h "
,
" && mv ares_build.h.orig ares_build.h)"
,
" && mv ares_build.h.orig ares_build.h)"
,
"> configure-output.txt"
])
"> configure-output.txt"
])
...
@@ -70,6 +71,8 @@ def configure_ares(bext, ext):
...
@@ -70,6 +71,8 @@ def configure_ares(bext, ext):
with
open
(
'configure-output.txt'
,
'r'
)
as
t
:
with
open
(
'configure-output.txt'
,
'r'
)
as
t
:
print
(
t
.
read
(),
file
=
sys
.
stderr
)
print
(
t
.
read
(),
file
=
sys
.
stderr
)
raise
raise
with
open
(
'configure-output.txt'
,
'r'
)
as
t
:
print
(
t
.
read
(),
file
=
sys
.
stderr
)
if
sys
.
platform
==
'darwin'
:
if
sys
.
platform
==
'darwin'
:
make_universal_header
(
'ares_build.h'
,
'CARES_SIZEOF_LONG'
)
make_universal_header
(
'ares_build.h'
,
'CARES_SIZEOF_LONG'
)
make_universal_header
(
'ares_config.h'
,
'SIZEOF_LONG'
,
'SIZEOF_SIZE_T'
,
'SIZEOF_TIME_T'
)
make_universal_header
(
'ares_config.h'
,
'SIZEOF_LONG'
,
'SIZEOF_SIZE_T'
,
'SIZEOF_TIME_T'
)
...
...
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