Qbasicnews.com

Full Version: how to link vbdos libs?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
qb is messing up the compilation of UGL (for large file sizes), so I need to know how to combine two libs in vbdos.

Glenn told me how to do it in qb, but the same didn't work for vbdos (after i replaced qb's one with vbdcl10):

http://forum.qbasicnews.com/viewtopic.ph...hlight=ugl
.. ..
I thnk Blitz himself explained somewhen how to do it.
where? All I know is that he explained how to compile UGL, after I prodded him about it....
First mix the two libraries using LIB: have UGL.LIB and YOURLIB.LIB and do

Code:
LIB UGL.LIB + YOURLIB.LIB

Notice that now UGL.LIB will be bigger (it will include YOULIB.LIB).

Use exactly the same LINK command explained by Blitz to generate the QLB.
er, i'll try it.