README.md: prune commands in favour of "Development with Cabal"

This commit is contained in:
Anton-Latukha 2020-09-30 16:01:23 +03:00
parent 8576b33af8
commit a2cba9ea59
No known key found for this signature in database
GPG Key ID: 3D84C07E91802E41
1 changed files with 0 additions and 6 deletions

View File

@ -108,9 +108,7 @@ To autoload prebuild project dependencies - please, enable the official HNix Cac
To build `hnix` with benchmarks enabled:
```
nix-shell
cabal v2-configure --enable-tests --enable-benchmarks
cabal v2-build
cabal v2-bench
```
@ -119,9 +117,7 @@ cabal v2-bench
To build `hnix` with profiling enabled:
```
nix-shell
cabal v2-configure --enable-tests --enable-profiling --flags=profiling
cabal v2-build
cabal v2-run hnix -- <args> +RTS -p
```
@ -130,9 +126,7 @@ cabal v2-run hnix -- <args> +RTS -p
To build `hnix` for debugging, with full tracing output and stack traces:
```
nix-shell
cabal v2-configure --enable-tests --enable-profiling --flags=profiling --flags=tracing
cabal v2-build
cabal v2-run hnix -- -v5 --trace <args> +RTS -xc
```