On Mon, 2006-01-09 at 13:58 -0800, Peter Seibel wrote: > On Jan 9, 2006, at 1:50 PM, C Y wrote: > > > Does that make it the world's largest "Hello World" binary? ;-) > > Nah, that'd be a Java hello-world "binary" that ships with its own JRE.
As a counter to these, "Hello World" on ECL on Linux is 23k with one external lib. hello.lisp: (princ "Hello world!") (terpri) (quit) (Left out compile steps, see http://ecls.sourceforge.net/ecldev/Compiler-examples.html#Compiler-examples) Result is:- ll myecl ; ldd myecl -rwxr-xr-x 1 davidc davidc 23K 2006-01-11 13:16 myecl* linux-gate.so.1 => (0xffffe000) libecl.so => /usr/local/lib/ecl/libecl.so (0xb7df4000) libdl.so.2 => /lib/tls/libdl.so.2 (0xb7de5000) libm.so.6 => /lib/tls/libm.so.6 (0xb7dbf000) libc.so.6 => /lib/tls/libc.so.6 (0xb7c88000) /lib/ld-linux.so.2 (0xb7f49000) Admittedly, libecl is large-ish... -rwxr-xr-x 1 root staff 3.6M 2006-01-11 13:14 /usr/local/lib/ecl/libecl.so* Don't know what it looks like in Win32. > > -Peter > Cheers DC -- David Creelman GPG: 11CC 0D54 D37A 4B9C 5C65 AB63 5B18 7F99 7D77 9CA5 _______________________________________________ Gardeners mailing list [email protected] http://www.lispniks.com/mailman/listinfo/gardeners
