default.nix: clean-up docs

M  default.nix
This commit is contained in:
Anton-Latukha 2020-06-17 15:45:42 +03:00
parent 222489baf3
commit c859eae013
No known key found for this signature in database
GPG Key ID: 3D84C07E91802E41
1 changed files with 1 additions and 2 deletions

View File

@ -18,9 +18,8 @@
# `failOnAllWarnings` + `buildFromSdist`
, buildStrictly ? false
# 2020-06-02: NOTE: enableDeadCodeElimination = true: On GHC =< 8.8.3 macOS build falls due to https://gitlab.haskell.org/ghc/ghc/issues/17283
# Disable GHC code optimizations for faster dev loops. Enable optimizations for production use or benchmarks.
, enableDeadCodeElimination ? false
# Optimization disabled for faster compiling/dev loop
# Disable GHC code optimizations for faster dev loops. Enable optimizations for production use or benchmarks.
, disableOptimization ? true
# Use faster `gold` ELF linker from GNU binutils instead of older&slower but more versatile GNU linker. Is not available by default since macOS does not have it.
, linkWithGold ? false