Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
3b819b30
Commit
3b819b30
authored
17 years ago
by
Dan Fandrich
Browse files
Options
Downloads
Patches
Plain Diff
bash is not required when compiling under Minix
parent
3fa60164
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/INSTALL
+26
-14
26 additions, 14 deletions
docs/INSTALL
with
26 additions
and
14 deletions
docs/INSTALL
+
26
−
14
View file @
3b819b30
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment