Hi Robert, Unfortunately, you cannot append paths to ERL_CFLAGS (or DRV_CFLAGS) from the top level application (riak in this case). There is a mechanism for specifying environment variables in an individual application's rebar.config file (http://hg.basho.com/rebar/src/tip/src/rebar_port_compiler.erl#cl-38) but this is not the recommended solution for your situation.
Based on the information given, your Erlang install does not appear to be setup correctly. Did you run "make install" after building your home directory Erlang? I'm seeing the "erts/emulator/beam" directory in the Erlang source directory but not the install directory. You will need to run "make install" before Erlang will work correctly. I would advise speaking with your sys-admin to either remove the home directory install from your path and use the system Erlang or configure the home directory install with a prefix and run "make && make install". The Erlang install document discusses setting a prefix during configuration: http://github.com/erlang/otp/blob/OTP_R14A/INSTALL.md Thanks, Dan Daniel Reverri Developer Advocate Basho Technologies, Inc. [email protected] On Tue, Jul 6, 2010 at 1:04 PM, Robert Schaefer <[email protected]>wrote: > Hi, Dan, > > "which erl" points to my home directory (uh oh, but... > that version has been used and works, but I only needed the binary, not > the include files) > > The source erlang I used was a downloaded tarball. > > Verbose mode follows: > > I found this!!!: > > ERL_CFLAGS > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/include > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/erts-5.8/include > > The can't find .h file is in: > > /home/jupiter/rps/rabbitmq/otp_src_R14A/erts/emulator/beam/ > > Should I just append the ERL_CFLAGS environment variable to include this > include path? > > bob s. > > -------------------------- > quasar:~/rabbitmq/riak/riak > ./rebar -v compile > DEBUG: Rebar location: "/home/jupiter/rps/rabbitmq/riak/riak/rebar" > DEBUG: Entering /home/jupiter/rps/rabbitmq/riak/riak > INFO: Looking for erlang_js-0.3 ; found erlang_js-0.3 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js > INFO: Looking for mochiweb-1.7.1 ; found mochiweb-1.7.1 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/mochiweb > INFO: Looking for webmachine-1.7.0 ; found webmachine-1.7.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/webmachine > INFO: Looking for riakc-0.2.0 ; found riakc-0.2.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/riakc > INFO: Looking for bitcask-1.0.1 ; found bitcask-1.0.1 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/bitcask > INFO: Looking for ebloom-1.0.0 ; found ebloom-1.0.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/ebloom > DEBUG: Available deps: > [{dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js", > erlang_js,"0.3", > > {hg,"http://bitbucket.org/basho/erlang_js"<http://bitbucket.org/basho/erlang_js> > ,"82"}}, > > {dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/mochiweb", > mochiweb,"1.7.1", > > {hg,"http://bitbucket.org/basho/mochiweb"<http://bitbucket.org/basho/mochiweb> > , > "mochiweb-1.7.1"}}, > > {dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/webmachine", > webmachine,"1.7.0", > > {hg,"http://bitbucket.org/basho/webmachine"<http://bitbucket.org/basho/webmachine> > , > "154"}}, > > {dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/riakc", > riakc,"0.2.0", > {hg, > "http://bitbucket.org/basho/riak-erlang-client"<http://bitbucket.org/basho/riak-erlang-client> > , > "65"}}, > > {dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/bitcask", > bitcask,"1.0.1", > > {hg,"http://bitbucket.org/basho/bitcask"<http://bitbucket.org/basho/bitcask> > ,"185"}}, > > {dep,"/home/jupiter/rps/rabbitmq/riak/riak/deps/ebloom", > ebloom,"1.0.0", > > {hg,"http://bitbucket.org/basho/ebloom"<http://bitbucket.org/basho/ebloom> > , > "ebloom-1.0.0"}}] > DEBUG: Missing deps : [] > INFO: Looking for erlang_js-0.3 ; found erlang_js-0.3 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js > INFO: Looking for mochiweb-1.7.1 ; found mochiweb-1.7.1 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/mochiweb > INFO: Looking for webmachine-1.7.0 ; found webmachine-1.7.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/webmachine > INFO: Looking for riakc-0.2.0 ; found riakc-0.2.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/riakc > INFO: Looking for bitcask-1.0.1 ; found bitcask-1.0.1 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/bitcask > INFO: Looking for ebloom-1.0.0 ; found ebloom-1.0.0 at > /home/jupiter/rps/rabbitmq/riak/riak/deps/ebloom > DEBUG: Predirs: ["/home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js", > "/home/jupiter/rps/rabbitmq/riak/riak/deps/mochiweb", > "/home/jupiter/rps/rabbitmq/riak/riak/deps/webmachine", > "/home/jupiter/rps/rabbitmq/riak/riak/deps/riakc", > "/home/jupiter/rps/rabbitmq/riak/riak/deps/bitcask", > "/home/jupiter/rps/rabbitmq/riak/riak/deps/ebloom", > "/home/jupiter/rps/rabbitmq/riak/riak/apps/luke", > "/home/jupiter/rps/rabbitmq/riak/riak/apps/riak_core", > "/home/jupiter/rps/rabbitmq/riak/riak/apps/riak_kv", > "/home/jupiter/rps/rabbitmq/riak/riak/rel"] > DEBUG: Entering /home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js > DEBUG: Available deps: [] > DEBUG: Missing deps : [] > DEBUG: Predirs: [] > ==> erlang_js (compile) > DEBUG: Matched required ERTS version: 5.8 -> .* > DEBUG: Matched required OTP release: R14A -> R13B04|R14 > DEBUG: erl_opts [debug_info,fail_on_warning] > DEBUG: Starting 3 compile worker(s) > INFO: Skipped src/erlang_js.erl > INFO: Skipped src/js.erl > INFO: Skipped src/erlang_js_sup.erl > INFO: Skipped src/js_benchmark.erl > INFO: Skipped src/js_cache.erl > INFO: Skipped src/js_drv_comm.erl > INFO: Skipped src/js_driver.erl > INFO: Skipped src/js_memory.erl > DEBUG: Worker exited cleanly > INFO: Skipped src/js_mochinum.erl > DEBUG: Worker exited cleanly > INFO: Skipped src/js_mochijson2.erl > DEBUG: Worker exited cleanly > Running make -C c_src > INFO: sh: make -C c_src > [{"BASELINE","/home/jupiter/rps/baseline2010"}, > > {"BINDIR","/home/jupiter/rps/rabbitmq/otp_src_R14A/bin/i686-pc-linux-gnu"}, > {"CC","gcc"}, > {"CLASSPATH", > > ":/home/jupiter/rps/rabbitmq/junit/junit4.8.2:/home/jupiter/rps/rabbitmq/junit/junit4.8.2/junit-4.8.2.jar::/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/src:/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/build/gensrc:/home/jupiter/rps/rabbitmq/commons-io-1.4-src/src/java:/home/jupiter/rps/rabbitmq/junit/junit4.8.2:/home/jupiter/rps/rabbitmq/junit/junit4.8.2/junit-4.8.2.jar::/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/src:/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/build/gensrc:/home/jupiter/rps/rabbitmq/commons-io-1.4-src/src/java"}, > {"COLORTERM","gnome-terminal"}, > {"CORRELATOR_CW_PATH", > > "/home/jupiter/rps//home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0calib/MidasW/analysis"}, > {"CVS_RSH","ssh"}, > {"CXX","g++"}, > {"DBUS_SESSION_BUS_ADDRESS", > > "unix:abstract=/tmp/dbus-DYkHhSyqUm,guid=d1cbd86c7e6beeb081f80f004c333b09"}, > {"DESKTOP_SESSION","default"}, > {"DESKTOP_STARTUP_ID",[]}, > {"DISPLAY",":0.0"}, > {"DRV_CFLAGS", > "-g -Wall -fPIC > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/include > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/erts-5.8/include -I > c_src/system/include/js -DXP_UNIX"}, > {"DRV_LDFLAGS", > "-shared -L/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/lib > -lerl_interface -lei c_src/system/lib/libjs.a c_src/system/lib/libnspr4.a"}, > {"EMU","beam"}, > {"ERLANG_ARCH","32"}, > {"ERLANG_TARGET","i686-pc-linux-gnu-32"}, > {"ERL_CFLAGS", > " -I/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/include > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/erts-5.8/include "}, > {"ERL_LDFLAGS", > " -L/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/lib > -lerl_interface -lei"}, > {"GDMSESSION","default"}, > {"GDM_XSERVER_LOCATION","local"}, > {"GNOME_DESKTOP_SESSION_ID","Default"}, > {"GNOME_KEYRING_SOCKET","/tmp/keyring-rNQPTP/socket"}, > {"GTK_RC_FILES","/etc/gtk/gtkrc:/home/jupiter/rps/.gtkrc-1.2-gnome2"}, > {"G_BROKEN_FILENAMES","1"}, > {"HISTSIZE","1000"}, > {"HOME","/home/jupiter/rps"}, > {"HOSTNAME","quasar"}, > {"INPUTRC","/etc/inputrc"}, > {"JAVA_HOME","/opt/linux/jdk"}, > {"JUNIT_HOME","/home/jupiter/rps/rabbitmq/junit/junit4.8.2"}, > {"KDEDIR","/usr"}, > {"KDE_IS_PRELINKED","1"}, > {"KDE_NO_IPV6","1"}, > {"LANG","en_US.UTF-8"}, > {"LD_LIBRARY_PATH", > > ":.:/lib:/usr/lib:/usr/local/lib:/usr/X11R6/lib:/opt/linux/jre1.6.0_13/lib:/opt/linux/lib"}, > {"LESSOPEN","|/usr/bin/lesspipe.sh %s"}, > {"LOGNAME","rps"}, > {"LS_COLORS",[]}, > {"MAIL","/var/spool/mail/rps"}, > {"NSPR_SIXTYFOUR","--disable-64bit"}, > {"PACMAN_LOCATION","/home/jupiter/rps/pacman/pacman-3.29"}, > {"PAC_ANCHOR","/home/jupiter/rps/nEdit"}, > {"PATH", > > "/home/jupiter/rps/rabbitmq/otp_src_R14A/bin/i686-pc-linux-gnu:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/mercurial/mercurial-1.5.4:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/nEdit/nedit-linux-glibc:/home/jupiter/rps/pacman/pacman-3.29/bin:/home/jupiter/rps/mercurial/mercurial-1.5.4:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/nEdit/nedit-linux-glibc:/home/jupiter/rps/pacman/pacman-3.29/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/opt/linux/jre1.6.0_13/bin:/opt/linux/bin:/opt/linux/jre1.6.0_13/bin:/opt/linux/bin"}, > {"PROCESSED_CAL","/home/jupiter/rps/calib/processed/2010-02-01"}, > {"PROGNAME","erl"}, > {"PWD","/home/jupiter/rps/rabbitmq/riak/riak"}, > {"PYTHON_SITE_PKGS", > > "/home/jupiter/rps/baseline2010/python-2.6.2/pkg/lib/python2.6/site-packages"}, > {"QTDIR","/usr/lib/qt-3.3"}, > {"QTINC","/usr/lib/qt-3.3/include"}, > {"QTLIB","/usr/lib/qt-3.3/lib"}, > {"REPLAY_CW_PATH","/home/jupiter/rps/calib/SystemSignalMonitor"}, > {"ROOTDIR","/home/jupiter/rps/rabbitmq/otp_src_R14A"}, > {"SESSION_MANAGER","local/quasar:/tmp/.ICE-unix/2905"}, > {"SHELL","/bin/bash"}, > {"SHLVL","2"}, > {"SSH_AGENT_PID","2941"}, > {"SSH_ASKPASS","/usr/libexec/openssh/gnome-ssh-askpass"}, > {"SSH_AUTH_SOCK","/tmp/ssh-wXnMba2905/agent.2905"}, > {"TERM","xterm"}, > {"USER","rps"}, > {"USERNAME","rps"}, > {"WINDOWID","22020177"}, > {"XAUTHORITY","/tmp/.gdmTYGDFV"}, > {"XMODIFIERS","@im=none"}] > make: Entering directory > `/home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js/c_src' > make: Nothing to be done for `js'. > make: Leaving directory > `/home/jupiter/rps/rabbitmq/riak/riak/deps/erlang_js/c_src' > > Compiling c_src/driver_comm.c > INFO: sh: $CC -c $CFLAGS $DRV_CFLAGS c_src/driver_comm.c -o > c_src/driver_comm.o > [{"BASELINE","/home/jupiter/rps/baseline2010"}, > > {"BINDIR","/home/jupiter/rps/rabbitmq/otp_src_R14A/bin/i686-pc-linux-gnu"}, > {"CC","gcc"}, > {"CLASSPATH", > > ":/home/jupiter/rps/rabbitmq/junit/junit4.8.2:/home/jupiter/rps/rabbitmq/junit/junit4.8.2/junit-4.8.2.jar::/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/src:/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/build/gensrc:/home/jupiter/rps/rabbitmq/commons-io-1.4-src/src/java:/home/jupiter/rps/rabbitmq/junit/junit4.8.2:/home/jupiter/rps/rabbitmq/junit/junit4.8.2/junit-4.8.2.jar::/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/src:/home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0/build/gensrc:/home/jupiter/rps/rabbitmq/commons-io-1.4-src/src/java"}, > {"COLORTERM","gnome-terminal"}, > {"CORRELATOR_CW_PATH", > > "/home/jupiter/rps//home/jupiter/rps/rabbitmq/rabbitmq-java-client-1.8.0calib/MidasW/analysis"}, > {"CVS_RSH","ssh"}, > {"CXX","g++"}, > {"DBUS_SESSION_BUS_ADDRESS", > > "unix:abstract=/tmp/dbus-DYkHhSyqUm,guid=d1cbd86c7e6beeb081f80f004c333b09"}, > {"DESKTOP_SESSION","default"}, > {"DESKTOP_STARTUP_ID",[]}, > {"DISPLAY",":0.0"}, > {"DRV_CFLAGS", > "-g -Wall -fPIC > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/include > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/erts-5.8/include -I > c_src/system/include/js -DXP_UNIX"}, > {"DRV_LDFLAGS", > "-shared -L/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/lib > -lerl_interface -lei c_src/system/lib/libjs.a c_src/system/lib/libnspr4.a"}, > {"EMU","beam"}, > {"ERLANG_ARCH","32"}, > {"ERLANG_TARGET","i686-pc-linux-gnu-32"}, > {"ERL_CFLAGS", > " -I/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/include > -I/home/jupiter/rps/rabbitmq/otp_src_R14A/erts-5.8/include "}, > {"ERL_LDFLAGS", > " -L/home/jupiter/rps/rabbitmq/otp_src_R14A/lib/erl_interface/lib > -lerl_interface -lei"}, > {"GDMSESSION","default"}, > {"GDM_XSERVER_LOCATION","local"}, > {"GNOME_DESKTOP_SESSION_ID","Default"}, > {"GNOME_KEYRING_SOCKET","/tmp/keyring-rNQPTP/socket"}, > {"GTK_RC_FILES","/etc/gtk/gtkrc:/home/jupiter/rps/.gtkrc-1.2-gnome2"}, > {"G_BROKEN_FILENAMES","1"}, > {"HISTSIZE","1000"}, > {"HOME","/home/jupiter/rps"}, > {"HOSTNAME","quasar"}, > {"INPUTRC","/etc/inputrc"}, > {"JAVA_HOME","/opt/linux/jdk"}, > {"JUNIT_HOME","/home/jupiter/rps/rabbitmq/junit/junit4.8.2"}, > {"KDEDIR","/usr"}, > {"KDE_IS_PRELINKED","1"}, > {"KDE_NO_IPV6","1"}, > {"LANG","en_US.UTF-8"}, > {"LD_LIBRARY_PATH", > > ":.:/lib:/usr/lib:/usr/local/lib:/usr/X11R6/lib:/opt/linux/jre1.6.0_13/lib:/opt/linux/lib"}, > {"LESSOPEN","|/usr/bin/lesspipe.sh %s"}, > {"LOGNAME","rps"}, > {"LS_COLORS",[]}, > {"MAIL","/var/spool/mail/rps"}, > {"NSPR_SIXTYFOUR","--disable-64bit"}, > {"PACMAN_LOCATION","/home/jupiter/rps/pacman/pacman-3.29"}, > {"PAC_ANCHOR","/home/jupiter/rps/nEdit"}, > {"PATH", > > "/home/jupiter/rps/rabbitmq/otp_src_R14A/bin/i686-pc-linux-gnu:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/mercurial/mercurial-1.5.4:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/nEdit/nedit-linux-glibc:/home/jupiter/rps/pacman/pacman-3.29/bin:/home/jupiter/rps/mercurial/mercurial-1.5.4:/home/jupiter/rps/rabbitmq/otp_src_R14A/bin:/home/jupiter/rps/nEdit/nedit-linux-glibc:/home/jupiter/rps/pacman/pacman-3.29/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/opt/linux/jre1.6.0_13/bin:/opt/linux/bin:/opt/linux/jre1.6.0_13/bin:/opt/linux/bin"}, > {"PROCESSED_CAL","/home/jupiter/rps/calib/processed/2010-02-01"}, > {"PROGNAME","erl"}, > {"PWD","/home/jupiter/rps/rabbitmq/riak/riak"}, > {"PYTHON_SITE_PKGS", > > "/home/jupiter/rps/baseline2010/python-2.6.2/pkg/lib/python2.6/site-packages"}, > {"QTDIR","/usr/lib/qt-3.3"}, > {"QTINC","/usr/lib/qt-3.3/include"}, > {"QTLIB","/usr/lib/qt-3.3/lib"}, > {"REPLAY_CW_PATH","/home/jupiter/rps/calib/SystemSignalMonitor"}, > {"ROOTDIR","/home/jupiter/rps/rabbitmq/otp_src_R14A"}, > {"SESSION_MANAGER","local/quasar:/tmp/.ICE-unix/2905"}, > {"SHELL","/bin/bash"}, > {"SHLVL","2"}, > {"SSH_AGENT_PID","2941"}, > {"SSH_ASKPASS","/usr/libexec/openssh/gnome-ssh-askpass"}, > {"SSH_AUTH_SOCK","/tmp/ssh-wXnMba2905/agent.2905"}, > {"TERM","xterm"}, > {"USER","rps"}, > {"USERNAME","rps"}, > {"WINDOWID","22020177"}, > {"XAUTHORITY","/tmp/.gdmTYGDFV"}, > {"XMODIFIERS","@im=none"}] > > c_src/driver_comm.c:21:24: error: erl_driver.h: No such file or directory > c_src/driver_comm.c: In function ‘read_command’: > c_src/driver_comm.c:36: warning: implicit declaration of function > ‘driver_alloc’ > ERROR: $CC -c $CFLAGS $DRV_CFLAGS c_src/driver_comm.c -o > c_src/driver_comm.o failed with error: 1 > quasar:~/rabbitmq/riak/riak > > > > > ------------------------- > > > > > On 07/06/2010 03:46 PM, Dan Reverri wrote: > > Hi Robert, > > My guess is that the build process is still using your home directory > version of Erlang which may be broken. Can you type the following? > which erl > > The home directory version has the erl_driver.h file in a location I am > not familiar with and may not be in the Erlang include paths; although I am > just guessing and could be completely wrong. > > Can you tell me what source tree you are building from? Downloaded > tarball or bitbucket/github clone? > Can you try compiling with the verbose flag and send us the output? > ./rebar -v compile > > Also, we provide pre-built binaries for Redhat so you do not need to > build from source: > https://downloads.basho.com/riak/ > > > Thanks, > Dan > > Daniel Reverri > Developer Advocate > Basho Technologies, Inc. > [email protected] > > > On Tue, Jul 6, 2010 at 12:18 PM, Robert Schaefer <[email protected]>wrote: > >> Dan, >> >> Redhat Enterprise 5.4 >> >> I first installed it in my home directory, >> /home/jupiter/rps/rabbitmq/otp_src_R14A/erts/emulator/beam/erl_driver.h >> >> and when riak couldn't find it, I had my sys-admin install it >> just in case the path to the "includes" was hard coded to use admin space. >> >> "find" returns: /opt/linux/lib/erlang/erts-5.8/include/erl_driver.h >> >> The include file is present (in two directories: mine, and admin space). >> >> What do I have to do to get riak to find either one? >> >> (I know erlang binary works because I used it to build another tool, >> "rabbitmq") >> >> thanks, >> >> bob s. >> >> >> >> On 07/06/2010 02:28 PM, Dan Reverri wrote: >> >> Hi Robert, >> >> What platform are you building on? (OS X, Ubuntu, Redhat) >> How did you install Erlang? >> Can you check your Erlang install for the "erl_driver.h" file? >> >> To find the Erlang root directory use code:root_dir/0: >> $ erl >> Erlang R13B04 (erts-5.7.5) [source] [64-bit] [smp:4:4] [rq:4] >> [async-threads:0] [hipe] [kernel-poll:false] >> >> Eshell V5.7.5 (abort with ^G) >> 1> code:root_dir(). >> "/usr/local/Cellar/erlang/R13B04/lib/erlang" >> 2> >> >> >> You can search the root directory for the "erl_driver.h" file as >> follows: >> $ cd /usr/local/Cellar/erlang/R13B04/lib/erlang >> $ find . -name "erl_driver.h" >> ./erts-5.7.5/include/erl_driver.h >> ./usr/include/erl_driver.h >> >> >> Thanks, >> Dan >> >> Daniel Reverri >> Developer Advocate >> Basho Technologies, Inc. >> [email protected] >> >> >> On Tue, Jul 6, 2010 at 10:49 AM, robert schaefer >> <[email protected]>wrote: >> >>> >>> -- The error I get is: >>> >>> Compiling c_src/driver_comm.c >>> c_src/driver_comm.c:21:24: error: erl_driver.h: No such file or directory >>> c_src/driver_comm.c: In function ‘read_command’: >>> c_src/driver_comm.c:36: warning: implicit declaration of function >>> ‘driver_alloc’ >>> ERROR: $CC -c $CFLAGS $DRV_CFLAGS c_src/driver_comm.c -o >>> c_src/driver_comm.o failed with error: 1 >>> make: *** [compile] Error 1 >>> >>> >>> -- The riak make appears to not know where the erlang include files are - >>> erlang version: otp_src_R14A >>> >>> Any help? >>> >>> ----------------------------------- >>> robert schaefer >>> Atmospheric Sciences Group >>> MIT Haystack Observatory >>> Westford, MA 01886 >>> >>> email: [email protected] >>> voice: 781-981-5767 >>> www: http://www.haystack.mit.edu >>> >>> >>> _______________________________________________ >>> riak-users mailing list >>> [email protected] >>> http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com >>> >> >> >> > !DSPAM:4c338819292242105830677! > > >
_______________________________________________ riak-users mailing list [email protected] http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
