Editing code works (I only tried a simple "hello, world" module). Attempting to compile or run results in a core dump. Exporting to IL and C works, with these caveats:
* I can compile the C code by following the instructions in build.txt and substituting gcc with clang and adding compiler flags.
* For IL, the build directory contains run.sh and build.sh. These contain references to "./ilasm" and "./mono". Replacing these by "ilasm" and "mono" makes these scripts work.
I have now received a response from the author.
To fix the crash:
* cp ObxIDE ~/bin
* cd ~/bin
* mkdir mono; cd mono
* ln -s /usr/local/bin/mono-sgen ./mono
* ln -s /usr/local/lib/mono/4.8-api/mscorlib.dll ./mscorlib.dll
Now the IDE works as advertised.
#Oberon #OpenBSD #IDE
Edit: (must be mono-sgen, not mono)