Modified on 02/19/2003 at 08:17
Creator:
Mickaël Rémond
include_lib directive does not compile properly from the Unix command line.
This presently prevent btt (Bluetail ticket tracker) 3.1 to compile out of the box.
Work around (Nicolas Niclausse):
If you set the ERLC_EMULATOR variables, it seems to work:
schultze:~/tmp> erlc glop.erl
./glop.erl:3: can't find include lib "eva/include/eva.hrl"
schultze:~/tmp> export ERLC_EMULATOR=/usr/bin/erl
schultze:~/tmp> erlc glop.erl
schultze:~/tmp>
Related links
erlang-questions: Problem with include_lib directive
erlang-questions: Include_lib ecc problem
erlang-questions: Workaround
|