File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ set -ex
2727source $TRAVIS_BUILD_DIR /ci/travis_env_common.sh
2828source $TRAVIS_BUILD_DIR /ci/travis_install_conda.sh
2929
30+ pushd python/manylinux1
31+
3032cat << EOF > check_imports.py
3133import sys
3234import pyarrow
@@ -39,8 +41,6 @@ if sys.version_info.major > 2:
3941 import pyarrow.gandiva
4042EOF
4143
42- pushd python/manylinux1
43-
4444for PYTHON_TUPLE in ${PYTHON_VERSIONS} ; do
4545 IFS=" ," read PYTHON_VERSION UNICODE_WIDTH <<< $PYTHON_TUPLE
4646
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ Status Engine::LoadPreCompiledIR() {
134134
135135 // / Read from file into memory buffer.
136136 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> buffer_or_error =
137- llvm::MemoryBuffer::getMemBuffer (bitcode);
137+ llvm::MemoryBuffer::getMemBuffer (bitcode, " precompiled " , false );
138138
139139 ARROW_RETURN_IF (!buffer_or_error,
140140 Status::CodeGenError (" Could not load module from IR: " ,
You can’t perform that action at this time.
0 commit comments