Hi All...
> I Just Built my project in DEBUG and RELEASE mode...
> Please suggest me, how to build my project in TINY mode...
Thanks in advance, :)
John
Printable View
Hi All...
> I Just Built my project in DEBUG and RELEASE mode...
> Please suggest me, how to build my project in TINY mode...
Thanks in advance, :)
John
What is TINY mode?
You built a DEBUG and RELEASE configuration, not mode. You need to explain better what you want to do.
do you mean how to reduce the size of ur final app?
i dont hink theres a "tiny mode" on the compiler
u can always use a runtime PE packer
> Exactly... even I was shocked when i heard this for the first time (To build in "Tiny mode or Configuration"), but my Prof. says we can build this.
> He also mentioned about i can take help by using SCons also...
if any one knows about this thing please reply...
Hmmm, Google didn't find out something useful searching for SCons "tiny mode" :confused:
Perhaps, you should ask your "Prof." to explain more clear what he wants from you. :rolleyes:
And, BTW, could you omit the leading ">" symbols in your posts? They do not help to read understand your posts... :eek:
Any way... i appreciate u guys for replying me... and also i'll be waiting for other replies... i hope i get solution for this... :)
>> i hope i get solution for this
Solution for what??
VictorN gave your next step: Perhaps, you should ask your "Prof." to explain more clear what he wants from you.
gg
Well, I suppose you could compile with optimization set to prefer small code rather than fast, and using the runtime DLLs rather than static runtime linking.
As mentioned earlier, you can simply pack your executable/dlls with a executable packer like UPX. I do it with almost everything a write.
As Victor said, TINY is a build option for a 16-bit application (sweet memories ;)) , i.e. TINy is really nothing that's applicable these days.
I guess people might still use 16-bit compilers.
Anyway, here is a nice write-up about the subject (Tiny "memory model", NOT "mode"): WiKi
Thanks guys... :)