GCC error in Mac OS X Intel
Just a little note for the benefit of others with the same problem searching for an answer.
When compiling on my shiny new MacBook, I got the following error:
dyld: Library not loaded: /usr/i686-apple-darwin8/lib/libgcc_s.1.dylib
Referenced from: /usr/bin/gcc
Reason: image not found
The answer is to remove the DYLD_FALLBACK_LIBRARY_PATH:
export DYLD_FALLBACK_LIBRARY_PATH=
..which should solve it.