If you’ve got the latest Apple Developer tools installed, you’ll notice that attempting to ./configure the clamav-0.93 package doesn’t work because of a gcc compiler bug. The way I found around this is to “fink install gcc43”, then retry the configure command after having set the CC to be /sw/bin/gcc-4 and then you can make and make install as per usual.
Tag: gcc
Static Code Analysis techniques in Xcode
An article on Apple’s developer site shows some basics of how to use GCC’s static code analysis from within Xcode. (Better to let the compiler find problems for you than to have to find them yourself!)