aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJ08nY2024-08-17 16:38:10 +0200
committerJ08nY2024-08-17 16:39:32 +0200
commit1d0636449183bde3b7f8422ee71dd75f693eec56 (patch)
treec61579fef907ef8ab443b7caf8611aa4e9f86254 /README.md
parent2b5a0e4222e3a5e788f82dcce649cc73002f09bd (diff)
downloadECTester-1d0636449183bde3b7f8422ee71dd75f693eec56.tar.gz
ECTester-1d0636449183bde3b7f8422ee71dd75f693eec56.tar.zst
ECTester-1d0636449183bde3b7f8422ee71dd75f693eec56.zip
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3061407..a984f55 100644
--- a/README.md
+++ b/README.md
@@ -334,9 +334,12 @@ nix build ".#lib.openssl.v331"
# To build a shim using a given version of a library (example mbedTLS 3.5):
nix build ".#shim.mbedtls.v35"
# To build ECTesterStandalone.jar with a given version of a library (example libgcrypt 1.9.4):
-nix build ".#gcrypt.v194"
+nix build "?submodules=1.#gcrypt.v194"
+
# The available versions of the libraries are in the nix/*_pkg_versions.json files.
# The "default" version always points to the most recent version.
+# To build ECTesterStandalone with all the libraries in default versions:
+nix build "?submodules=1."
```
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:
```shell
# This runs the default test-suite agains LibreSSL 3.9.2
-nix run ".#libressl.v392" --- test default LibreSSL
+nix run "?submodules=1.#libressl.v392" --- test default LibreSSL
```
#### Gradle