Skip to content

Commit e0571ef

Browse files
authored
Merge pull request #4 from ajdawson/remove-werror
Remove -Werror from compile flags
2 parents 78c45cc + 5bed16b commit e0571ef

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

fp-truncate.cabal

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ library
2828
, data-binary-ieee754
2929
, optparse-applicative
3030
default-language: Haskell2010
31-
ghc-options: -Wall -Werror -fno-warn-unused-binds
31+
ghc-options: -Wall -fno-warn-unused-binds
3232

3333
executable tr32b
3434
hs-source-dirs: app
3535
main-is: Bin32.hs
36-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
36+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
3737
build-depends: base
3838
, fp-truncate
3939
default-language: Haskell2010
@@ -49,31 +49,31 @@ executable tr64b
4949
executable tr32d
5050
hs-source-dirs: app
5151
main-is: Dec32.hs
52-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
52+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
5353
build-depends: base
5454
, fp-truncate
5555
default-language: Haskell2010
5656

5757
executable tr64d
5858
hs-source-dirs: app
5959
main-is: Dec64.hs
60-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
60+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
6161
build-depends: base
6262
, fp-truncate
6363
default-language: Haskell2010
6464

6565
executable tr32h
6666
hs-source-dirs: app
6767
main-is: Hex32.hs
68-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
68+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
6969
build-depends: base
7070
, fp-truncate
7171
default-language: Haskell2010
7272

7373
executable tr64h
7474
hs-source-dirs: app
7575
main-is: Hex64.hs
76-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
76+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
7777
build-depends: base
7878
, fp-truncate
7979
default-language: Haskell2010
@@ -100,7 +100,7 @@ test-suite fp-truncate-test
100100
, HUnit
101101
, data-binary-ieee754
102102
, fp-truncate
103-
ghc-options: -Wall -Werror -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
103+
ghc-options: -Wall -fno-warn-unused-binds -threaded -rtsopts -with-rtsopts=-N
104104
default-language: Haskell2010
105105

106106
source-repository head

0 commit comments

Comments
 (0)