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
pip install scikits.audiolab
. . .
downloads and compiles some things successfully, but chokes with
/Developer/SDKs/MacOSX10.6.sdk/usr/include/float.h
which has
#if defined(GNUC)
#include_next <float.h>
as clang fails to find the latter float.h
Hence, added in ~/.profile:
C_INCLUDE_PATH="./:/usr/include/:${C_INCLUDE_PATH}”
export C_INCLUDE_PATH
However, clang still did not see /usr/include/float.h, so then
modified
/Developer/SDKs/MacOSX10.6.sdk/usr/include/float.h
replacing
#include_next <float.h>
with
#include <float.h>
and compile worked. The install apparently completed ok.
The text was updated successfully, but these errors were encountered:
pip install scikits.audiolab
. . .
downloads and compiles some things successfully, but chokes with
/Developer/SDKs/MacOSX10.6.sdk/usr/include/float.h
which has
#if defined(GNUC)
#include_next <float.h>
as clang fails to find the latter float.h
Hence, added in ~/.profile:
C_INCLUDE_PATH="./:/usr/include/:${C_INCLUDE_PATH}”
export C_INCLUDE_PATH
However, clang still did not see /usr/include/float.h, so then
modified
/Developer/SDKs/MacOSX10.6.sdk/usr/include/float.h
replacing
#include_next <float.h>
with
#include <float.h>
and compile worked. The install apparently completed ok.
The text was updated successfully, but these errors were encountered: