commit 9b9ac20fbdcb65a15c9b23013b0d493bdfca4ec4 parent a8b2f639d7a99b7a7a4df3dec7888f85ac9da470 Author: Robert Russell <robert@rr3.xyz> Date: Sat, 27 Dec 2025 10:45:33 -0800 Add flag to dump core, set -O2, and add commented-out version/license lines Diffstat:
| M | package.yaml | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/package.yaml b/package.yaml @@ -1,10 +1,26 @@ name: haskell-template +# version: 0.0.0.0 +# license: ISC author: Robert Russell +flags: + dump: + description: dump core to a file + default: false + manual: true +when: + - condition: flag(dump) + ghc-options: + - -ddump-simpl + - -dsuppress-all + - -dno-suppress-type-signatures + - -ddump-to-file + ghc-options: - -Wall - -Wno-name-shadowing - -Wno-unused-top-binds + - -O2 language: GHC2024