From e6a6afde47d2f9bf9a64a26664443ee322803247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Mon, 15 Jan 2024 14:12:19 -0300 Subject: [PATCH] python3-cvxopt: fix building on i686 --- srcpkgs/python3-cvxopt/template | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srcpkgs/python3-cvxopt/template b/srcpkgs/python3-cvxopt/template index 772426a59e6..cc961568f9d 100644 --- a/srcpkgs/python3-cvxopt/template +++ b/srcpkgs/python3-cvxopt/template @@ -32,4 +32,6 @@ pre_build() { export CVXOPT_BUILD_FFTW=1 export CVXOPT_BLAS_LIB=$(vopt_if openblas 'openblas' 'blas;gslcblas') export CVXOPT_LAPACK_LIB=$(vopt_if openblas 'openblas' 'lapack') + # setup.py gets this wrong for i686 (and other 32 bit?) + export CVXOPT_SUITESPARSE_INC_DIR=${XBPS_CROSS_BASE}/usr/include/suitesparse }