travis: re-enable python bindings

This commit is contained in:
Dane Springmeyer 2014-08-06 23:16:37 -07:00
parent f711cac261
commit 3d8a6714a1

View file

@ -37,7 +37,7 @@ before_install:
install:
- export RANLIB=/bin/true
- ./configure CXX="${CXX}" CC="${CC}" CUSTOM_CXXFLAGS="-flto" BINDINGS="" CUSTOM_LDFLAGS="-flto" DEMO=True BENCHMARK=True CPP_TESTS=True CAIRO=True FAST=True || cat config.log
- ./configure CXX="${CXX}" CC="${CC}" CUSTOM_CXXFLAGS="-flto" CUSTOM_LDFLAGS="-flto" DEMO=True BENCHMARK=True CPP_TESTS=True CAIRO=True FAST=True || cat config.log
# workaround ar bug: https://sourceware.org/bugzilla/show_bug.cgi?id=13256
- echo 'ar "$@" --plugin /usr/lib/LLVMgold.so' > ar-lto && chmod +x ./ar-lto && export AR=$(pwd)/ar-lto
- if [[ "${CXX}" == 'g++-4.8' ]]; then JOBS=2 make; else JOBS=6 make; fi;