Richard schreef:
Hi,

After installing PHP on a Windows machine I see a very small PHP-executable and several extension dll's that can be loaded.

When I build PHP on a QNX machine I get one huge executable of 8.6 MB. Is it possible to build something similar to the Windows version?

yes, by specifying to ./configure that it should build shared extensions
or those extensions that allow it. so the relevant ./configure options
will look something like:

        --enable-foo=shared,/path/to/libs

what's your configure line look like right now?

PS - I'd never heard of QNX - just looked it up - interested to know what your
doing with it and php.

PPS - Is a single large binary any worse than a smaller binary that loads
in a bunch of extensions (assuming the same extensions in each case), won't
the memory footprint be near enough the same for each?



Regards,

Richard


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to