Fixes build for Mac OS X.

If the binary is stripped on Mac OS X, dlsym fails, so builtin native library
calls do not work.  The solution, in this case, is to not strip the binary.
This commit is contained in:
Eric Scharff 2007-10-30 16:22:53 -06:00
parent b85c643251
commit b3891debb2

View File

@ -326,7 +326,9 @@ ifeq ($(platform),windows)
else
$(cc) $(^) $(lflags) -o $(@)
endif
ifneq ($(platform),darwin)
@$(strip) --strip-all $(@)
endif
@$(show-size) $(@)
$(generator): $(generator-objects)