
Ars Technica's John Siracusa has published
his in-depth review of Mac OS X Snow Leopard. As always, this is the only review you really need to read. Great stuff, as usual - even if you don't care about or don't use Mac OS X. He concludes:
"Snow Leopard is a unique and beautiful release, unlike any that have come before it in both scope and intention. At some point, Mac OS X will surely need to get back on the bullet-point-features bandwagon. But for now, I'm content with Snow Leopard. It's the Mac OS X I know and love, but with more of the things that make it weak and strange engineered away."
Member since:
2005-11-18
$ cat test.c
int main() {}
$ gcc -o test test.c
$ file test
test: Mach-O 64-bit executable x86_64
$ gcc -arch i386 -o test test.c
$ file test
test: Mach-O executable i386
$ gcc -arch i386 -arch x86_64 -o test test.c
$ file test
test: Mach-O universal binary with 2 architectures
test (for architecture i386): Mach-O executable i386
test (for architecture x86_64): Mach-O 64-bit executable x86_64