Re: Borland C Compiler
- Posted by Bernie <xotron at PCOM.NET> Aug 19, 2000
- 517 views
On Sat, 19 Aug 2000 08:41:29 -0700, David Cuny <dcuny at LANSET.COM> wrote: >Bernie wrote: > >> Couldn't you control [the command line options] >> with a make file ? > >Yes, that's what a make file does. > >The problem is, I don't know *what* flag to specify to the compiler or >linker. It's enough to drive me into using djgpp again... > David: Goto to the DOS prompt and type BCC32 that will list all options for the compiler. Goto to the DOS prompt and type ILINK32 that will list all options for the linker. In the COMPILER you can specify LIBRARY directories. In the LINKER you can specify LIBRARY files. Can't you just link only the DLL's that you want to use ? Bernie