-
Notifications
You must be signed in to change notification settings - Fork 11
/
ghc-core.cabal
32 lines (31 loc) · 1.03 KB
/
ghc-core.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: ghc-core
version: 0.5.6
license: BSD3
license-file: LICENSE
author: Don Stewart
maintainer: [email protected]
homepage: https://github.com/shachaf/ghc-core
category: Development
synopsis: Display GHC's core and assembly output in a pager
description: A convenient command line wrapper for GHC that displays
GHC's optimised core and assembly output in a human
readable, colourised manner, in a pager. Unix systems
only, currently.
.
Usage:
.
> ghc-core A.hs
.
> ghc-core -fvia-C -optc-O3 A.hs
.
build-type: Simple
cabal-version: >= 1.2
executable ghc-core
build-depends: base >= 4 && < 5,
process >=1.0.1,
pcre-light,
colorize-haskell,
directory,
filepath
main-is: ghc-core.hs
ghc-options: -Wall -O2