I downloaded eclipse 3.4 (java version) for MacOSX (carbon). I tried to “update” erlide, but I see many (duplicated) options (many erlide, options that say “only for erl SDK updates”, etc.). Sometimes I get 403 errors when trying to access http://erlide.org/update and http://erlide.sourceforge.net/update .
Finally, when I have some set of options installed, I either get errors like:
Loading of /Users/kevindtimm/Documents/eclipse-java-ganymede-SR2-macosx-carbon/eclipse/plugins/org.erlide.kernel.common_0.8.1.201005250801/ebin/erlide_kernel_common.beam failed: badfile ( hello_world@ktmac )1> =ERROR REPORT==== 24-Nov-2010::19:17:32 === beam/beam_load.c(1768): Error loading function erlide_kernel_common:monitor/0: op put_string uux: please re-compile this module with an R14B compiler
or, when I performed different erlide installations, I don't get a response to the console so that:
hello:hello().
Does anyone have a good link on how to download this plugin and what elements should I install?
-module(hello). -export([hello/0]). hello() -> io:write("Hello World\n").
[edit]
I installed eclipse 3.6 (C ++) as follows, and the following code still cannot find hi: hello ().
%%file_comment -module(hello). %% %% Include files %% %% %% Exported Functions %% -export([hello/0]). %% %% API Functions %% %% %% Local Functions %% hello() -> io:write("Hello World\n").
[/ edit]
source share