You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, gem install numo-fftw fails with the following error:
checking for fftw3.h... yes
checking for -lfftw3... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
I also tried manually symlinking fftw3* to libfftw3*, but that didn't seem to help. What's odd is that the mkmf.log reports /opt/homebrew/lib as being on DYLD_LIBRARY_PATH.
Happy to help with debugging, or even submitting a fix once we figure out what's wrong!
The text was updated successfully, but these errors were encountered:
In the mileage may vary area.. I had to do something like: gem install numo-fftw -- --with-fftw-include=/usr/local/Cellar/fftw/3.3.10_1/include --with-fftw-lib=/usr/local/Cellar/fftw/3.3.10_1/lib
Maybe I'm doing something wrong, I'm happy to try some debugging steps.
I have fftw3 installed via
brew install fftw
. The directory/opt/homebrew/lib
contains:Unfortunately,
gem install numo-fftw
fails with the following error:Full logs here:
mkmf.log
gem_make.out
I also tried manually symlinking
fftw3*
tolibfftw3*
, but that didn't seem to help. What's odd is that the mkmf.log reports/opt/homebrew/lib
as being onDYLD_LIBRARY_PATH
.Happy to help with debugging, or even submitting a fix once we figure out what's wrong!
The text was updated successfully, but these errors were encountered: