diff options
Diffstat (limited to 'tools/pypy-test.sh')
-rwxr-xr-x | tools/pypy-test.sh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index f4d56ba1a..33a97ad17 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -11,19 +11,20 @@ sudo apt-get -yq install libatlas-base-dev liblapack-dev gfortran-5 F77=gfortran-5 F90=gfortran-5 \ # Download the proper OpenBLAS x64 precompiled library -target=$(python tools/openblas_support.py) +target=$(python3 tools/openblas_support.py) +ls -lR "$target" echo getting OpenBLAS into $target -export LD_LIBRARY_PATH=$target/usr/local/lib -export LIB=$target/usr/local/lib -export INCLUDE=$target/usr/local/include +export LD_LIBRARY_PATH=$target/lib +export LIB=$target/lib +export INCLUDE=$target/include # Use a site.cfg to build with local openblas cat << EOF > site.cfg [openblas] libraries = openblas -library_dirs = $target/usr/local/lib:$LIB -include_dirs = $target/usr/local/lib:$LIB -runtime_library_dirs = $target/usr/local/lib +library_dirs = $target/lib:$LIB +include_dirs = $target/lib:$LIB +runtime_library_dirs = $target/lib EOF echo getting PyPy 3.6 nightly |