aboutsummaryrefslogtreecommitdiff
path: root/docs/INSTALL
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-03-31 03:01:13 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-03-31 03:01:13 +0000
commit1e482fe6a8dbc36a4e9ad19eb8fec98f240b5ed5 (patch)
tree6710477cf64587738a23963bb15d361bcf21b766 /docs/INSTALL
parent80e7f9b9de23d9de78697a6b946ec435c307a195 (diff)
Changed the makefile so the doc/examples/ programs are never built in a
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal.
Diffstat (limited to 'docs/INSTALL')
-rw-r--r--docs/INSTALL4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/INSTALL b/docs/INSTALL
index c3b18ecbf..d51e92ae7 100644
--- a/docs/INSTALL
+++ b/docs/INSTALL
@@ -709,8 +709,8 @@ REDUCING SIZE
size of libcurl for embedded applications where binary size is an
important factor. First, be sure to set the CFLAGS variable when
configuring with any relevant compiler optimization flags to reduce the
- size of the binary. For gcc, this would mean at minimum the -Os option
- and probably the -march=X option as well, e.g.:
+ size of the binary. For gcc, this would mean at minimum the -Os option,
+ potentially the -march=X and -mdynamic-no-pic options as well, e.g.:
./configure CFLAGS='-Os' ...