Hi, On Tue, May 1, 2018 at 6:26 AM, Ercan Ersoy <[email protected]> wrote: > > I work on Open Watcom. I would like disable DOS/4G dependency on Open Watcom > (32 bit DOS mode) for compiled executable files.
wcc386 is the 32-bit compiler while wcl386 is the 32-bit compiler + linker frontend (compiler driver or whatever). By default, it targets DOS/4GW, but you can sometimes run (or bind) others. So you don't necessarily have to have dos4gw.exe installed, you can do (for example): "dos32a myprog.exe", and it should run fine. But presumably you want to make that automatic, which means you need to re-bind a different stub and/or extender itself. IIRC, from memory (but check the OpenWatcom help/docs for more details): wcl386 -bt=dos -l=causeway (or -l=pmodew) ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Freedos-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freedos-devel
