Donate

You can make a donation if you'd like to support my work:


Contact

I deactivated the rating mechanism for now due to excessive spamming; while I got some interesting comments when I started it the current ratio is several hundred spam comments for one useful comment. If you have anything to say, please write an email to bwachter-hp@lart.info

Codesize

Some stuff about codesize

I think there's not much to say about this...
Binaries are stripped.

bwachter@aardvark:~/projects/dietlinux/test$ cat hworld.c 
#include <stdio.h>
main(){
  printf("Hello WOrld!");
}

bwachter@aardvark:~/projects/dietlinux/test$ ls -l hworld-*
-rwxr-xr-x    1 bwachter bwachter     2252 2003-02-04 23:26 hworld-dietlibc-dynamic
-rwxr-xr-x    1 bwachter bwachter     6520 2003-02-04 23:26 hworld-dietlibc-static
-rwxr-xr-x    1 bwachter bwachter     3008 2003-02-04 23:26 hworld-glibc-dynamic
-rwxr-xr-x    1 bwachter bwachter   384236 2003-02-04 23:26 hworld-glibc-static

bwachter@aardvark:~/projects/dietlinux/test$ cat hworld_write.c 
main(){
  write("Hello WOrld!");
  }
  
bwachter@aardvark:~/projects/dietlinux/test$ ls -l hworld_*
-rwxr-xr-x    1 bwachter bwachter     2252 2003-02-04 23:26 hworld_write-diet-dynamic
-rwxr-xr-x    1 bwachter bwachter      696 2003-02-04 23:26 hworld_write-diet-static
-rwxr-xr-x    1 bwachter bwachter     3008 2003-02-04 23:26 hworld_write-glibc-dynamic
-rwxr-xr-x    1 bwachter bwachter   384200 2003-02-04 23:26 hworld_write-glibc-static