Commit 30a2c6c8 authored by Jason Madden's avatar Jason Madden

More debugging

parent 6a1a1b5a
...@@ -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
......
...@@ -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')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment