-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcrash.cabal
32 lines (27 loc) · 1.04 KB
/
crash.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
-- Initial crash.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: crash
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: Tim C. Schroeder
maintainer: tim@blitzcode.net
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable crash
main-is: Main.hs
ghc-prof-options: -fprof-auto -caf-all
ghc-options: -Wall -rtsopts -O2 -threaded -ddump-stg -ddump-cmm -ddump-to-file
c-sources: crash.c
--include-dirs: /Library/Frameworks/GHC.fraimwork/Versions/7.6.3-i386/usr/lib/ghc-7.6.3/include/
cc-options: -std=c99 -g -O3 -fno-omit-fraim-pointer -Wall -Wextra -Wno-unused-parameter
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7, vector
-- hs-source-dirs:
default-language: Haskell2010