From 469bb3b5646d08c7ffc3a32afc08a0ee9c54e610 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vielma Date: Tue, 2 Oct 2018 11:45:21 -0400 Subject: [PATCH] Update build_tarballs.jl --- build_tarballs.jl | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/build_tarballs.jl b/build_tarballs.jl index 3027c1c..5d5fc6e 100644 --- a/build_tarballs.jl +++ b/build_tarballs.jl @@ -28,7 +28,11 @@ done mkdir build cd build/ export LDFLAGS="-L${prefix}/lib -lcoinglpk" -../configure --prefix=$prefix --with-pic --disable-pkg-config --with-blas="-L${prefix}/lib -lcoinblas" --host=${target} --enable-shared --disable-static --enable-dependency-linking lt_cv_deplibs_check_method=pass_all --with-glpk-lib="-L${prefix}/lib -lcoinglpk" --with-glpk-incdir="$prefix/include/coin/ThirdParty" --with-lapack="-L${prefix}/lib -lcoinlapack" --with-coinutils-lib="-L${prefix}/lib -lCoinUtils" --with-coinutils-incdir="$prefix/include/coin" +../configure --prefix=$prefix --with-pic --disable-pkg-config --host=${target} --enable-shared --disable-static --enable-dependency-linking lt_cv_deplibs_check_method=pass_all \ +--with-glpk-lib="-L${prefix}/lib -lcoinglpk" --with-glpk-incdir="$prefix/include/coin/ThirdParty" \ +--with-lapack="-L${prefix}/lib -lcoinlapack" \ +--with-coinutils-lib="-L${prefix}/lib -lCoinUtils" --with-coinutils-incdir="$prefix/include/coin" \ +--with-blas="-L${prefix}/lib -lcoinblas" make -j${nproc} make install @@ -37,15 +41,15 @@ make install # These are the platforms we will build for by default, unless further # platforms are passed in on the command line platforms = [ - Linux(:i686, :glibc), - Linux(:x86_64, :glibc), - Linux(:aarch64, :glibc), - Linux(:armv7l, :glibc, :eabihf), - Linux(:powerpc64le, :glibc), - Linux(:i686, :musl), - Linux(:x86_64, :musl), - Linux(:aarch64, :musl), - Linux(:armv7l, :musl, :eabihf), + Linux(:i686, libc=:glibc), + Linux(:x86_64, libc=:glibc), + Linux(:aarch64, libc=:glibc), + Linux(:armv7l, libc=:glibc, call_abi=:eabihf), + Linux(:powerpc64le, libc=:glibc), + Linux(:i686, libc=:musl), + Linux(:x86_64, libc=:musl), + Linux(:aarch64, libc=:musl), + Linux(:armv7l, libc=:musl, call_abi=:eabihf), MacOS(:x86_64), Windows(:i686), Windows(:x86_64)