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
{{ message }}
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
When building ilastik with buildem, one can run into the problem that NumPy does not compile and complains about several Python Symbols not being found for the respective architecture. It took us quite a while to find out that this was caused by some CFLAGS being set, that overwrote the default numpy settings. (found here)
Experienced this on OSX Mavericks 10.9, with CFLAGS="-march=core2" set.
Should we unset the cflags and cxxflags for building with buildem? Or at least tell the user to do so.
The text was updated successfully, but these errors were encountered:
Just to clarify: do you believe that CFLAGS was set by a BuildEM script? Or was it set elsewhere in your environment? Is it enough to simply check the value of $ENV{CFLAGS} in BuildEM's numpy.cmake and provide a warning/error to the user?
CFLAGS was set in the bash_profile of the Mac that we encountered the error on.
So, I guess that checking and warning the user should be sufficient. But I am not sure whether this only applies to numpy, or other packages as well. It might be worth checking in BuildSupport.cmake?
When building ilastik with buildem, one can run into the problem that NumPy does not compile and complains about several Python Symbols not being found for the respective architecture. It took us quite a while to find out that this was caused by some CFLAGS being set, that overwrote the default numpy settings. (found here)
Experienced this on OSX Mavericks 10.9, with CFLAGS="-march=core2" set.
Should we unset the cflags and cxxflags for building with buildem? Or at least tell the user to do so.
The text was updated successfully, but these errors were encountered: