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
forward.cpp, instrument.cpp, ion.cpp, loop.cpp, and strand.cpp each have <malloc.h> included, which will cause compilation errors on Mac or Linux (and certain compilers).
<malloc.h> can be replaced with <stdlib.h>, which should work on all operating systems.
The text was updated successfully, but these errors were encountered:
Yeah I've also had an issue with this as well. In my experience, it tends to be an issue on macOS when you don't have the XCode developer tools installed.
In Forward_Model/source/:
forward.cpp, instrument.cpp, ion.cpp, loop.cpp, and strand.cpp each have <malloc.h> included, which will cause compilation errors on Mac or Linux (and certain compilers).
<malloc.h> can be replaced with <stdlib.h>, which should work on all operating systems.
The text was updated successfully, but these errors were encountered: