We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The command rebar -v compile will fail this way
rebar -v compile
INFO: sh info: cwd: "/Users/mtourne/dev/yawndb/deps/ecirca" cmd: $CC $ERL_CFLAGS -P -D BITNESS=12 -E priv/ecirca.c > c_src/ecirca_small.c priv/ecirca.c:4:10: fatal error: 'erl_nif.h' file not found #include "erl_nif.h"
Running rebar -vv compile I can see that ERL_FLAGS is set this way :
rebar -vv compile
{"ERL_CFLAGS", " -I\"/usr/local/Cellar/erlang/17.3.4/lib/erlang/lib/erl_interface-3.7.19/include\" -I\"/usr/local/Cellar/erlang/17.3.4/lib/erlang/erts-6.2.1/include\" "},
Where it gets bizarre, is I can get passed this error if I set ERL_FLAGS manually to this :
ERL_CFLAGS=-I/usr/local/Cellar/erlang/17.3.4/lib/erlang/erts-6.2.1/include rebar -v compile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The command
rebar -v compile
will fail this wayRunning
rebar -vv compile
I can see that ERL_FLAGS is set this way :Where it gets bizarre, is I can get passed this error if I set ERL_FLAGS manually to this :
ERL_CFLAGS=-I/usr/local/Cellar/erlang/17.3.4/lib/erlang/erts-6.2.1/include rebar -v compile
The text was updated successfully, but these errors were encountered: