M-HT

Results 43 comments of M-HT

The recompiler only supports 32-bit DOS executables, not 16-bit executables. The recompiler doesn't handle inputs (mouse/keyboard) or outputs (video/audio). You will have to handle that yourself - that's part of...

Here are the required steps to create the Septerra Core executable (provided that you have all necessary programs and libraries): 1) compile udis86-1.7.2 in SRW a) go to directory `SR/SRW/udis86-1.7.2`...

@catskull When compiling for arm64, you need following changes in the instructions: * before running `scons` in 2b) make following change in file `SR_defs.h`: change line `#define OUTPUT_TYPE OUT_X86` to...

I'm guessing that you compiled judy yourself (using build.bat). Try this: Put judy.def from [judy.zip](https://github.com/M-HT/SR/files/15385505/judy.zip) into judy-1.0.5\src (where build.bat is located). Edit file build.bat and add parameter `/DEF:judy.def` to the...

I don't have visual studio 2022, I'm testing it on older version where link still supports option /LIB, but that's just a minor issue. My generated .lib file is also...

That looks like the output of `dumpbin /symbols judy.lib`. Can you check the output of `dumpbin /exports judy.lib` ?

I'm not sure I can help you any further. I made a test program and it linked with judy.lib without any problems.

May I ask what you are trying to achieve ? I'm not sure this project works with compilers other than gcc/clang. And if you can't compile it, are you sure...

That's how `scons` works. I didn't do anything specific for Visual Studio. I'm not stopping you from using Visual studio, but i don't use it so don't expect much help.

I tried compiling it in msys2 and I fixed some compilation warnings. With 32-bit version there were no problems with building. With 64-bit version there were a lot of compiler...