-
There is a list of instructions in the README, however it's not clear what to download exactly.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yep, I have to update the build instructions. All current develop is made on Linux or WSL2 (Windows). You need to install OpenWatcom v2, NASM, GNU Make and DOSBox-X. Once everything is installed, these are the following steps to build:
For example, to build a fresh new executable:
|
Beta Was this translation helpful? Give feedback.
-
Here is how to install everything under Ubuntu (can be run in Windows under with VirtualBox). DOSBox-Xcan be installed from App Center GNU Makerun OpenWatcom V2 :
NASM
|
Beta Was this translation helpful? Give feedback.
Yep, I have to update the build instructions.
All current develop is made on Linux or WSL2 (Windows). You need to install OpenWatcom v2, NASM, GNU Make and DOSBox-X.
Once everything is installed, these are the following steps to build:
source env.sh
build.sh <executable> <parameters>
Where:"executable" is the name for the executable and "parameters" can be one of these:
"-clean": cleans all generated OBJs,
"-stub": adds the DOS/32 stub,
"-debug": generates debugging exectable, needs dbgcfg.h to be adjusted to your needs
buildall.sh
package.sh
For example, to b…