diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-25 10:23:19 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-25 10:23:19 -0400 |
commit | 55f9c59c25d08e3c01840b04333a58cf4485b5fe (patch) | |
tree | a148fb11389579ecd6124d26fc9fa8ee9c2e6931 /pyfftw | |
parent | 334778088a95fb0c297ad8594144f8724b9a916d (diff) | |
download | cbc-recipes-55f9c59c25d08e3c01840b04333a58cf4485b5fe.tar.gz |
Force pkg-config usage
Diffstat (limited to 'pyfftw')
-rw-r--r-- | pyfftw/pyfftw.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyfftw/pyfftw.ini b/pyfftw/pyfftw.ini index 97ce1d9..e9b9838 100644 --- a/pyfftw/pyfftw.ini +++ b/pyfftw/pyfftw.ini @@ -28,9 +28,12 @@ run : [cbc_build] linux : + export CFLAGS="`pkg-config --cflags fftw3`" + export LDFLAGS="`pkg-config --libs fftw3`" python setup.py install || exit 1 windows : + # You're on your own with the libraries, it seems. python setup.py install if errorlevel 1 exit 1 |