@psychophanta:
Hmm ... already did some tests in creating small purebasic executables.
Hava a look at the following thread for example :
http://www.purebasic.fr/english/viewtop ... +framework
( Note : The technique of cab-dropping which I used in this thread is
something which isn't really used anymore. E.g. it runs under Windows
XP only etc...)
Nevertheless, there are some options how you can make very tiny exes
in C. I use the Express Version of M$
Visual Studio C++ 2005 Suite. I
am pretty happy with it ( really like the new IDE compared to VC6.0 ).
Furthermore, like traumatic already mentioned, there are a lot of things
which you can
exclude using C++. You can code smaller versions
of the libs you don't include e.g. In addition, I use the tool called
Crinkler.
It replaces the linker and has some excellent shrinking techniques when
you compile tiny code ( around 4kb ). This doesnt work (yet?) with pure-
basic.
Last but not least there are several possible compiler options for creating
small executables.
So, as far as I can say, you can produce
much smaller code ( focussing
on <4kb development ) with C/C++ as with PB.
Nevertheless, I don't want to start a flamewar PB versus C/C++. I like
PB and I still use it for some prototyping and small tools. It's a perfect
language for certain stuff. Just to make this clear ...
