I've spend some hours in disassembler and figured out that command line to run this thingy should be like this: java.com -classpath jaguid.jar;dos.jar jaguid/Console
Hello David. Yea, WATCOM for x64 would be nice. Thank you very much for updated version.
Okay I realized it was stupid to modify config.h for compilation of objcrtr.lib and objpakr.lib, much better idea is add an '-refcnt' switch into Makefile on these libraries. My program then starts normally, but stll fail in some cases, like int main(int argc, char *argv[]) { id someblock = { printf("addr = %p", someblock); }; [someblock value]; return 0; } results an error "error: Message 'decrefs' sent to freed object."
Suprised to see this project still alive. I have some questions about building and using Portable Object Compiler on Win32 with Open Watcom 1.9. First thing, when i tried to build latest version 3.3.20 (using old version 3.1.9 from 2000 year) i got two errors about undeclared symbols OBJCVERSION and OBJC1VERSION while building objc. I've solved this by adding two defines in config.h file: #define OBJCVERSION "3.3.20" #define OBJC1VERSION "3.3.20" Second, when including both windows.h and objpak.h...