Qbasicnews.com
Difference /Q and /QU - Printable Version

+- Qbasicnews.com (http://qbasicnews.com/newforum)
+-- Forum: QBasic (http://qbasicnews.com/newforum/forum-4.html)
+--- Forum: QB Discussion & Programming Help (http://qbasicnews.com/newforum/forum-11.html)
+--- Thread: Difference /Q and /QU (/thread-10132.html)



Difference /Q and /QU - Opresion - 06-11-2008

I do not remember when but I saw a post talking about the difference betwen /Q and /QU when they are used with the Linker.

I can not find it because the searcher of this page ignores the slash. Who remembers where is it? or who can explain to me the meanings of /QU?


Re: Difference /Q and /QU - Moneo - 06-12-2008

(06-11-2008, 03:02 PM)Opresion link Wrote:I do not remember when but I saw a post talking about the difference betwen /Q and /QU when they are used with the Linker.

I can not find it because the searcher of this page ignores the slash. Who remembers where is it? or who can explain to me the meanings of /QU?
According to my manual, when used for the Linker, /Q is the same as /QUICKLIB. This option tells the linker to combine the object files you specify into a Quick library.

The manual does not specify any /QU option. I suspect that /QU would be the same as /Q, since they are both abbreviations of /QUICKLIB.

Good luck, and regards .... Moneo




Re: Difference /Q and /QU - Dav - 06-12-2008

The only reference to /QU in the QuickBasic Knowledge Base I could find was this one:
http://kb.qbasicnews.com/Q41004.TXT

I think the forum post you're looking for was posted under the old forum, still viewable here:
http://oldforum.qbasicnews.com/viewtopic.php?t=7338

- Dav


Re: Difference /Q and /QU - Opresion - 06-17-2008

(06-12-2008, 05:37 AM)Dav link Wrote:The only reference to /QU in the QuickBasic Knowledge Base I could find was this one:
http://kb.qbasicnews.com/Q41004.TXT

That's the answer; previously I wasn't paying enough attention; the difference it's that when one is making a Quickbasic library and displays an 'Unresolved External' message, one can use the /QU to ignore the problem and to finish the library.

Thank you very much for the solution.