Skip to content

Commit

Permalink
Merge pull request #484 from tomsmeding/manual-flags
Browse files Browse the repository at this point in the history
Make cabal flags manual
  • Loading branch information
tmcdonell authored Jan 8, 2021
2 parents e632752 + d8d427b commit 5425788
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions accelerate.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ custom-setup
, cabal-doctest >= 1.0

flag debug
manual: True
default: False
description:
Enable debug tracing messages. The following options are read from the
Expand Down Expand Up @@ -221,6 +222,7 @@ flag debug
.

flag ekg
manual: True
default: False
description:
Enable hooks for monitoring the running application using EKG. Implies
Expand Down Expand Up @@ -257,20 +259,24 @@ flag ekg
.

flag bounds-checks
description: Enable bounds checking
manual: True
default: True
description: Enable bounds checking

flag unsafe-checks
description: Enable bounds checking in unsafe operations
manual: True
default: False
description: Enable bounds checking in unsafe operations

flag internal-checks
description: Enable internal consistency checks
manual: True
default: False
description: Enable internal consistency checks

-- Enabling this drastically increases build times
-- See: https://gitlab.haskell.org/ghc/ghc/issues/15751
flag nofib
manual: True
default: False
description: Build the nofib test suite (required for backend testing)

Expand Down

0 comments on commit 5425788

Please sign in to comment.