diff options
| author | J08nY | 2024-08-17 17:55:49 +0200 |
|---|---|---|
| committer | J08nY | 2024-08-17 17:55:49 +0200 |
| commit | 3b9ad72877de3c60c83a2f6c4bcd80bcdb7193d8 (patch) | |
| tree | 2a385645d6b12a380d0bf57ae43d70910e89e627 | |
| parent | 1d0636449183bde3b7f8422ee71dd75f693eec56 (diff) | |
| download | ECTester-3b9ad72877de3c60c83a2f6c4bcd80bcdb7193d8.tar.gz ECTester-3b9ad72877de3c60c83a2f6c4bcd80bcdb7193d8.tar.zst ECTester-3b9ad72877de3c60c83a2f6c4bcd80bcdb7193d8.zip | |
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -330,16 +330,16 @@ Install [Nix](https://nixos.org/download/), then to build: ```shell # To build a library in a given version run (example OpenSSL 3.3.1): -nix build ".#lib.openssl.v331" +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" +nix build "#shim.mbedtls.v35" # To build ECTesterStandalone.jar with a given version of a library (example libgcrypt 1.9.4): -nix build "?submodules=1.#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." +nix build "?submodules=1#" ``` Each of the build steps above puts (symlinks really) its results into `./result` directory. @@ -348,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 "?submodules=1.#libressl.v392" --- test default LibreSSL +nix run "?submodules=1#libressl.v392" --- test default LibreSSL ``` #### Gradle |
