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
I tried to install node-core-audio under node js 4.1.0 on mac os, while compiling i get following error:
CXX(target) Release/obj.target/NodeCoreAudio/NodeCoreAudio/AudioEngine.o
In file included from ../NodeCoreAudio/AudioEngine.cpp:9:
In file included from /Users/jboerner/develop/private_projects/node_sampler/static/node_modules/node-core-audio/NodeCoreAudio/AudioEngine.h:11:
/Users/jboerner/.node-gyp/4.1.0/include/node/node_internals.h:6:10: fatal error: 'util-inl.h' file not found
#include "util-inl.h"
^
1 error generated.
The reason is that your not allowed to include node internal headers in your code. See issue nodejs/node-gyp#782.
This will not work for any newer nodejs version, at least on mac os :/.
The text was updated successfully, but these errors were encountered:
Problem
I tried to install node-core-audio under node js 4.1.0 on mac os, while compiling i get following error:
The reason is that your not allowed to include node internal headers in your code. See issue nodejs/node-gyp#782.
This will not work for any newer nodejs version, at least on mac os :/.
The text was updated successfully, but these errors were encountered: