Skip to content

Commit 1d06364

Browse files
committed
Update README with submodule info.
1 parent 2b5a0e4 commit 1d06364

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,12 @@ nix build ".#lib.openssl.v331"
334334
# To build a shim using a given version of a library (example mbedTLS 3.5):
335335
nix build ".#shim.mbedtls.v35"
336336
# To build ECTesterStandalone.jar with a given version of a library (example libgcrypt 1.9.4):
337-
nix build ".#gcrypt.v194"
337+
nix build "?submodules=1.#gcrypt.v194"
338+
338339
# The available versions of the libraries are in the nix/*_pkg_versions.json files.
339340
# The "default" version always points to the most recent version.
341+
# To build ECTesterStandalone with all the libraries in default versions:
342+
nix build "?submodules=1."
340343
```
341344

342345
Each of the build steps above puts (symlinks really) its results into `./result` directory.
@@ -345,7 +348,7 @@ with a given library version and arguments do:
345348

346349
```shell
347350
# This runs the default test-suite agains LibreSSL 3.9.2
348-
nix run ".#libressl.v392" --- test default LibreSSL
351+
nix run "?submodules=1.#libressl.v392" --- test default LibreSSL
349352
```
350353

351354
#### Gradle

0 commit comments

Comments
 (0)