Updated minimum libcurl size

This commit is contained in:
Dan Fandrich 2007-10-15 21:03:40 +00:00
parent a005243908
commit add90abfa4
1 changed files with 6 additions and 3 deletions

View File

@ -714,6 +714,9 @@ REDUCING SIZE
./configure CFLAGS='-Os' ... ./configure CFLAGS='-Os' ...
Note that newer compilers often produce smaller code than older versions
due to better optimization.
Be sure to specify as many --disable- and --without- flags on the configure Be sure to specify as many --disable- and --without- flags on the configure
command-line as you can to disable all the libcurl features that you command-line as you can to disable all the libcurl features that you
know your application is not going to need. Besides specifying the know your application is not going to need. Besides specifying the
@ -740,9 +743,9 @@ REDUCING SIZE
sections of the shared library using the -R option to objcopy (e.g. the sections of the shared library using the -R option to objcopy (e.g. the
.comment section). .comment section).
Using these techniques it is possible to create an HTTP-only shared Using these techniques it is possible to create an HTTP-only shared libcurl
libcurl library for i386 Linux platforms that is less than 90 KB in library for i386 Linux platforms that is only 96 KiB in size (as of libcurl
size (as of version 7.15.4). version 7.17.1, using gcc 4.2.2).
You may find that statically linking libcurl to your application will You may find that statically linking libcurl to your application will
result in a lower total size. result in a lower total size.