Xref: utzoo comp.databases:2753 comp.sys.ibm.pc:30117 Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!dsacg1!dcscg1!drezac From: drezac@dcscg1.UUCP (Duane L. Rezac) Newsgroups: comp.databases,comp.sys.ibm.pc Subject: Re: Possible Clipper Bug? Message-ID: <510@dcscg1.UUCP> Date: 13 Jun 89 15:08:21 GMT References: <1225@cbnewsc.ATT.COM> Distribution: usa Organization: Defense Construction Supply Center, Columbus Lines: 59 From article <1225@cbnewsc.ATT.COM>, by santol@cbnewsc.ATT.COM (shawn.r.antol): > P.S. > Have you used the DOS LINK(er) instead of the PLINK86 linker? > Here is the batch file I use to compile and link using the DOS linker, it is > much faster! > > CL.BAT > > clipper %1 > if not errorlevel 1 link %1, %1.exe,,\dbase\clipper.lib \dbase\extend.lib > > Shawn Antol I always use the dos linker as it is faster. I use the following batch file that gives me several link options.. rem clip.bat echo off clipper %1 if not errorlevel 0 goto crash if "%2" == "+" goto exten if "%2" == "d" goto debug if "%2" == "d+" goto exdebug if "%2" == "+d" goto exdebug if "%2" == "" goto plain :exten echo Linking %1 with Extended Library link %1,,,clipper.lib extend.lib goto end :debug echo Linking %1 with Debugger link %1 debug.obj,,,clipper.lib goto end :exdebug echo Linking %1 with Extended Library and Debugger link %1 debug.obj,,,clipper.lib extend.lib goto end :plain echo Linking %1 with Standard Library link %1,,,clipper.lib goto end :crash echo a compiler error has occured......please correct and try again.... goto end :end This gives me several options... compile and link with standard Library (clip program ) , debugger (clip program d) extended library (clip program +) or extended and debugger (clip program d+ or +d) Have Fun... +-----------------------+---------------------------------------------------+ | Duane L. Rezac |These views are my own, and NOT representitive of | | dsacg1!dcscg1!cpp90221|my place of Employment. | +-----------------------+---------------------------------------------------+