4e2 Subj : Re: dos project compile with memory medium and not with memory large To : borland.public.cpp.borlandcpp From : Ed Mulroy [TeamB] Date : Fri Mar 18 2005 10:18 am Here are some things I see in what you posted: The compiler generated make file compiles for large memory model but links for medium memory model. - Elements of both medium and large models are used It specifies -ml, the option for large mode in the file used to configure the compiler. Medium model would be -mm This is near the end of the file, below the comment "Compiler configuration file" The linking command uses medium model libraries and startup code This is below the call to the linker, the line with $(TLINK) on it c0m.obj, mathm.lib and cm.lib are used. The hand written make file, comptad2.mak, uses all large model, -ml, c0l.obj and cl.lib It does not use the bids library and uses floating point emulation (emu.lib instead of fp87.lib) which is what one wants for debugging. .. Ed > Morosh wrote in message > news:423a9881@newsgroups.borland.com... > > Hello: > I've just uploaded to "borland.public.attachments" a dos project > who compile with -mm option and not with -ml. > Can someone help? . 0