1. RE: [offtopic??] A Watcom Question
- Posted by kennethroger at prodigy.net Mar 31, 2001
- 504 views
Mike, These, e.g., can go in your autoexec.bat-- set WATCOM=c:\watcom set WCL386=-fp5 -5r -i#.;c:\watcom\h; -l#causeway And these in wlsystem.lnk-- system begin causeway option osname='CauseWay' option CASEEXACT libpath %WATCOM%\lib386 libpath %WATCOM%\lib386\dos op stub=cwstub.exe end (Put Causeway's stub in the c:\watcom\bin? directory.) Compile and link with wcl386.exe, or-- wcc386 -i=.;%WATCOM%\h -fp5 -5r file.c wlink system causeway file file.obj library libfile.lib (I'm over-describing for newbies that may be looking.) --Ken
2. RE: [offtopic??] A Watcom Question
- Posted by kennethroger at prodigy.net Mar 31, 2001
- 493 views
Mike, These, e.g., can go in your autoexec.bat-- set WATCOM=c:\watcom set WCL386=-fp5 -5r -i#.;c:\watcom\h; -l#causeway And these in wlsystem.lnk-- system begin causeway option osname='CauseWay' option CASEEXACT libpath %WATCOM%\lib386 libpath %WATCOM%\lib386\dos op stub=cwstub.exe end (Put Causeway's stub in the c:\watcom\bin? directory.) Compile and link with wcl386.exe, or-- wcc386 -i=.;%WATCOM%\h -fp5 -5r file.c wlink system causeway file file.obj library libfile.lib (I'm over-describing for newbies that may be looking.) --Ken
3. RE: [offtopic??] A Watcom Question
- Posted by Mike The Spike <mtsreborn at yahoo.com> Mar 31, 2001
- 488 views
Hey thanks man! I did what you said and now the situation imrpoved, only a few header files aren't found, but those are the ones that are put in an #ifdef section, for multiplatform compilation, etc... It seems it might take a while to figure this guy's code base out (???)... Damn... I was hoping to start coding a 3D Duke Nukem parody tonight :( Mike The Spike --- kennethroger at prodigy.net wrote: > > > Discuss Tech News as It Happens! > Keep up with the latest happenings in high tech -- > FREE! > > > > > > Mike, > > These, e.g., can go in your autoexec.bat-- > > set WATCOM=c:\watcom > set WCL386=-fp5 -5r -i#.;c:\watcom\h; -l#causeway > > And these in wlsystem.lnk-- > > system begin causeway > option osname='CauseWay' > option CASEEXACT > libpath %WATCOM%\lib386 > libpath %WATCOM%\lib386\dos > op stub=cwstub.exe > end > > (Put Causeway's stub in the c:\watcom\bin? > directory.) > > Compile and link with wcl386.exe, or-- > > wcc386 -i=.;%WATCOM%\h -fp5 -5r file.c > wlink system causeway file file.obj library > libfile.lib > > (I'm over-describing for newbies that may be > looking.) > > --Ken > > > > > > > > > >