aboutsummaryrefslogtreecommitdiff
path: root/docs/INSTALL
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2007-09-01 21:21:52 +0000
committerDan Fandrich <dan@coneharvesters.com>2007-09-01 21:21:52 +0000
commit3b819b3064862f032ffdc92614e1cdced09adfa0 (patch)
treece6a2a145d29574e67908cdb934eba7b25ba8123 /docs/INSTALL
parent3fa60164af98720696cf157158e78ad4e0540aba (diff)
bash is not required when compiling under Minix
Diffstat (limited to 'docs/INSTALL')
-rw-r--r--docs/INSTALL40
1 files changed, 26 insertions, 14 deletions
diff --git a/docs/INSTALL b/docs/INSTALL
index e1e2dfd4e..1ef2df705 100644
--- a/docs/INSTALL
+++ b/docs/INSTALL
@@ -597,28 +597,40 @@ eCos
Minix
=====
curl can be compiled on Minix 3 using gcc or ACK (starting with
- ver. 3.1.3). The gcc and bash packages must be installed first.
- The default heap size allocated to bash is inadequate for running
- configure and will result in out of memory errors. Increase it with
- the command:
+ ver. 3.1.3). The default heap size allocated to several required
+ programs is inadequate for configuring and compiling curl and will
+ result in strange errors unless fixed (which only needs to be done
+ once).
+
+ ACK
+ ---
+ Increase heap sizes with the commands:
+
+ chmem =1024000 /usr/lib/em_cemcom.ansi
+ chmem =512000 /usr/lib/i386/as
+
+ If you have bash installed:
+
+ chmem =2048000 /usr/local/bin/bash
+
+ Configure and compile with:
+
+ ./configure CC=cc LD=cc GREP=grep CPPFLAGS=-D_POSIX_SOURCE=1
+ make
+
+ GCC
+ ---
+ If you have bash installed:
chmem =2048000 /usr/local/bin/bash
- Make sure gcc and bash are in the PATH with the command:
+ Make sure gcc is in your PATH with the command:
export PATH=/usr/gnu/bin:$PATH
- then configure curl with a command like this:
+ then configure and compile curl with:
./configure CC=gcc GREP=grep AR=/usr/gnu/bin/gar
-
- Then simply run 'make'.
-
- To compile with the ACK C compiler:
-
- chmem =1024000 /usr/lib/em_cemcom.ansi
- chmem =512000 /usr/lib/i386/as
- ./configure CC=cc LD=cc GREP=grep CPPFLAGS=-D_POSIX_SOURCE=1
make