Skip to content

Commit

Permalink
Add instruction for updating submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed May 30, 2021
1 parent 1d3d85a commit 74c5810
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@ If you do not want to compile them yourself, you can download pre-compiled stati

Doing your own compilation is recommended, since the pre-compiled binary can become outdated soon.

Checkout newer versions in git submodules to compile newer versions of the libraries.
Checkout newer versions in git submodules to compile newer versions of the libraries. For example, to build `OpenSSL_1_1_1k` and `curl-7_77_0`:

```bash
cd openssl
git fetch
git checkout OpenSSL_1_1_1k
cd ..

cd curl
git fetch
git checkout curl-7_77_0
cd ..
```

## Usage

Expand Down

0 comments on commit 74c5810

Please sign in to comment.