3fc Subj : Re: library problem with command line compile To : borland.public.cpp.borlandcpp From : Antonio Mazzeo Date : Sun Dec 05 2004 02:36 pm JackRosenbloom wrote: > Hello, > > I am using version 4.52 of the compiler to create 16 bit DOS > applications. I have a library which I created using the IDE, compiled > large. I also have a number of applications which all link to this > library. When these applications are built under the IDE ( and compiled > large), all works fine. However, I need to use the command line > compiler. If I create a makefile automamtically from the IDE, then run > make -fproject.mak (project.mak was generated from the IDE), the linker > generates FIXUP OVERFLOW messages on symbols from my library created > with the IDE. Anyone have any idea how to get around this? The linker generate FIXUP OVERFLOW because the memory model is different. Check project.mak and verify that current memory model is the same of your library. Bye antonio . 0