Commit 1d06364 1 parent 2b5a0e4 commit 1d06364 Copy full SHA for 1d06364
File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -334,9 +334,12 @@ nix build ".#lib.openssl.v331"
334
334
# To build a shim using a given version of a library (example mbedTLS 3.5):
335
335
nix build " .#shim.mbedtls.v35"
336
336
# 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
+
338
339
# The available versions of the libraries are in the nix/*_pkg_versions.json files.
339
340
# 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."
340
343
```
341
344
342
345
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:
345
348
346
349
``` shell
347
350
# 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
349
352
```
350
353
351
354
#### Gradle
You can’t perform that action at this time.
0 commit comments