Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make cabal flags manual #484

Merged
merged 1 commit into from
Jan 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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