Skip to content

Instantly share code, notes, and snippets.

@xquery
Created May 13, 2017 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xquery/b6d11a04fbff33afb9293a6b20f4f00a to your computer and use it in GitHub Desktop.
Save xquery/b6d11a04fbff33afb9293a6b20f4f00a to your computer and use it in GitHub Desktop.
building curl
Herewith my experiences of building curl.
1) fork (curl)[https://github.com/curl/curl]
2) setup build env
```
./configure --disable-shared --enable-debug --enable-maintainer-mode
```
3) build it
as per typical
```
make
```
At this stage the curl binary should be built in src/ directory.
4) run tests
I then attempted to run tests
'''
make test
'''
but ran into issues ... I was able to workaround by running
```
cd tests && runtests.pl
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment