Firstly: Thank you very much for porting the build over to Mac - just in time for me to want to use it too
It works great on my SD870 images (although I don't see a popup for my camera name in the list, since the DNG files seem to work just fine in Aperture I'm sure it's not a big deal)
One side note:
(i only changed the gcc optimization level in the Makefile
from -O4 to -O2 to be on the safe side)
is the build really using O4? Any O greater than 3 just reverts to 3... There are some proposals out there for an actual O4 optimization level, but they aren't implemented yet... and specifying to use O4 might cause problems if the O4 optimizations break things when they do finally get put in place.
Just my two cents.
Ryan
What about -O levels higher than 3?
"Some users boast about even better performance obtained by using -O4, -O9, and so on, but the reality is that -O levels higher than 3 have no effect. The compiler may accept CFLAGS like -O4, but it actually doesn't do anything with them. It only performs the optimizations for -O3, nothing more.
Need more proof? Examine the gcc source code"
Source:
Gentoo Linux Documentation
--
Compilation Optimization Guide