Haskell stack ignores -Wall -Werror cabal ghc-options flags when building
I would like to always use the "-Wall -Werror" options when building with stack (executing stack build) but adding these flags to ghc-options in package.yaml does nothing. I would also like to avoid passing the --pedantic flag to stack build. Here's the config files:
package.yaml
...
executables:
XYZ-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -Werror
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- XYZ
...
XYZ.cabal
...
executable XYZ-exe
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
...
The "-Wall -Werror" flags are specified in ghc-options but as-if ignored when building. This is the output for stack build:
stack build
Building all executables for `XYZ' once. After a successful build of all of
them, only specified executables will be rebuilt.
XYZ-0.1.0.0: configure (lib + exe)
Configuring XYZ-0.1.0.0...
XYZ-0.1.0.0: build (lib + exe)
Preprocessing library for XYZ-0.1.0.0..
Building library for XYZ-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-
workdiste626a42bbuildDataListExtras.o )
... the rest is omitted, all succeed ...
And here's the output for stack build --pedantic
stack build --pedantic
Building all executables for `HStat' once. After a successful build of all of them, only specified executables will be rebuilt.
HStat-0.1.0.0: configure (lib + exe)
Configuring HStat-0.1.0.0...
HStat-0.1.0.0: build (lib + exe)
Preprocessing library for HStat-0.1.0.0..
Building library for HStat-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-workdiste626a42bbuildDataListExtras.o )
srcDataListExtras.hs:4:1: error: [-Wunused-imports, -Werror=unused-imports]
The import of ‘Data.Maybe’ is redundant
except perhaps to import instances from ‘Data.Maybe’
To import instances alone, use: import Data.Maybe()
|
4 | import Data.Maybe
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
This works as expected - srcDataListExtras.hs indeed does have an unused Data.Maybe import. What am I doing wrong?
haskell ghc cabal haskell-stack
|
show 2 more comments
I would like to always use the "-Wall -Werror" options when building with stack (executing stack build) but adding these flags to ghc-options in package.yaml does nothing. I would also like to avoid passing the --pedantic flag to stack build. Here's the config files:
package.yaml
...
executables:
XYZ-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -Werror
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- XYZ
...
XYZ.cabal
...
executable XYZ-exe
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
...
The "-Wall -Werror" flags are specified in ghc-options but as-if ignored when building. This is the output for stack build:
stack build
Building all executables for `XYZ' once. After a successful build of all of
them, only specified executables will be rebuilt.
XYZ-0.1.0.0: configure (lib + exe)
Configuring XYZ-0.1.0.0...
XYZ-0.1.0.0: build (lib + exe)
Preprocessing library for XYZ-0.1.0.0..
Building library for XYZ-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-
workdiste626a42bbuildDataListExtras.o )
... the rest is omitted, all succeed ...
And here's the output for stack build --pedantic
stack build --pedantic
Building all executables for `HStat' once. After a successful build of all of them, only specified executables will be rebuilt.
HStat-0.1.0.0: configure (lib + exe)
Configuring HStat-0.1.0.0...
HStat-0.1.0.0: build (lib + exe)
Preprocessing library for HStat-0.1.0.0..
Building library for HStat-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-workdiste626a42bbuildDataListExtras.o )
srcDataListExtras.hs:4:1: error: [-Wunused-imports, -Werror=unused-imports]
The import of ‘Data.Maybe’ is redundant
except perhaps to import instances from ‘Data.Maybe’
To import instances alone, use: import Data.Maybe()
|
4 | import Data.Maybe
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
This works as expected - srcDataListExtras.hs indeed does have an unused Data.Maybe import. What am I doing wrong?
haskell ghc cabal haskell-stack
I can't reproduce this issue. I just created a fresh stack project (stack new foo
), added-Wall -Werror
as you did to the executable section inpackage.yaml
, removed a signature to trigger a warning inapp/Main.hs
, thenstack build
gave an error, as expected. Can you show the commands you ran and the resulting output?
– Li-yao Xia
Jan 2 at 9:57
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
1
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
1
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11
|
show 2 more comments
I would like to always use the "-Wall -Werror" options when building with stack (executing stack build) but adding these flags to ghc-options in package.yaml does nothing. I would also like to avoid passing the --pedantic flag to stack build. Here's the config files:
package.yaml
...
executables:
XYZ-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -Werror
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- XYZ
...
XYZ.cabal
...
executable XYZ-exe
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
...
The "-Wall -Werror" flags are specified in ghc-options but as-if ignored when building. This is the output for stack build:
stack build
Building all executables for `XYZ' once. After a successful build of all of
them, only specified executables will be rebuilt.
XYZ-0.1.0.0: configure (lib + exe)
Configuring XYZ-0.1.0.0...
XYZ-0.1.0.0: build (lib + exe)
Preprocessing library for XYZ-0.1.0.0..
Building library for XYZ-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-
workdiste626a42bbuildDataListExtras.o )
... the rest is omitted, all succeed ...
And here's the output for stack build --pedantic
stack build --pedantic
Building all executables for `HStat' once. After a successful build of all of them, only specified executables will be rebuilt.
HStat-0.1.0.0: configure (lib + exe)
Configuring HStat-0.1.0.0...
HStat-0.1.0.0: build (lib + exe)
Preprocessing library for HStat-0.1.0.0..
Building library for HStat-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-workdiste626a42bbuildDataListExtras.o )
srcDataListExtras.hs:4:1: error: [-Wunused-imports, -Werror=unused-imports]
The import of ‘Data.Maybe’ is redundant
except perhaps to import instances from ‘Data.Maybe’
To import instances alone, use: import Data.Maybe()
|
4 | import Data.Maybe
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
This works as expected - srcDataListExtras.hs indeed does have an unused Data.Maybe import. What am I doing wrong?
haskell ghc cabal haskell-stack
I would like to always use the "-Wall -Werror" options when building with stack (executing stack build) but adding these flags to ghc-options in package.yaml does nothing. I would also like to avoid passing the --pedantic flag to stack build. Here's the config files:
package.yaml
...
executables:
XYZ-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -Werror
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- XYZ
...
XYZ.cabal
...
executable XYZ-exe
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
...
The "-Wall -Werror" flags are specified in ghc-options but as-if ignored when building. This is the output for stack build:
stack build
Building all executables for `XYZ' once. After a successful build of all of
them, only specified executables will be rebuilt.
XYZ-0.1.0.0: configure (lib + exe)
Configuring XYZ-0.1.0.0...
XYZ-0.1.0.0: build (lib + exe)
Preprocessing library for XYZ-0.1.0.0..
Building library for XYZ-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-
workdiste626a42bbuildDataListExtras.o )
... the rest is omitted, all succeed ...
And here's the output for stack build --pedantic
stack build --pedantic
Building all executables for `HStat' once. After a successful build of all of them, only specified executables will be rebuilt.
HStat-0.1.0.0: configure (lib + exe)
Configuring HStat-0.1.0.0...
HStat-0.1.0.0: build (lib + exe)
Preprocessing library for HStat-0.1.0.0..
Building library for HStat-0.1.0.0..
[ 1 of 105] Compiling Data.List.Extras ( srcDataListExtras.hs, .stack-workdiste626a42bbuildDataListExtras.o )
srcDataListExtras.hs:4:1: error: [-Wunused-imports, -Werror=unused-imports]
The import of ‘Data.Maybe’ is redundant
except perhaps to import instances from ‘Data.Maybe’
To import instances alone, use: import Data.Maybe()
|
4 | import Data.Maybe
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
This works as expected - srcDataListExtras.hs indeed does have an unused Data.Maybe import. What am I doing wrong?
haskell ghc cabal haskell-stack
haskell ghc cabal haskell-stack
edited Jan 8 at 23:41
sjakobi
2,3561433
2,3561433
asked Jan 2 at 8:51


Petras PurlysPetras Purlys
429211
429211
I can't reproduce this issue. I just created a fresh stack project (stack new foo
), added-Wall -Werror
as you did to the executable section inpackage.yaml
, removed a signature to trigger a warning inapp/Main.hs
, thenstack build
gave an error, as expected. Can you show the commands you ran and the resulting output?
– Li-yao Xia
Jan 2 at 9:57
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
1
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
1
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11
|
show 2 more comments
I can't reproduce this issue. I just created a fresh stack project (stack new foo
), added-Wall -Werror
as you did to the executable section inpackage.yaml
, removed a signature to trigger a warning inapp/Main.hs
, thenstack build
gave an error, as expected. Can you show the commands you ran and the resulting output?
– Li-yao Xia
Jan 2 at 9:57
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
1
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
1
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11
I can't reproduce this issue. I just created a fresh stack project (
stack new foo
), added -Wall -Werror
as you did to the executable section in package.yaml
, removed a signature to trigger a warning in app/Main.hs
, then stack build
gave an error, as expected. Can you show the commands you ran and the resulting output?– Li-yao Xia
Jan 2 at 9:57
I can't reproduce this issue. I just created a fresh stack project (
stack new foo
), added -Wall -Werror
as you did to the executable section in package.yaml
, removed a signature to trigger a warning in app/Main.hs
, then stack build
gave an error, as expected. Can you show the commands you ran and the resulting output?– Li-yao Xia
Jan 2 at 9:57
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
1
1
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
1
1
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11
|
show 2 more comments
1 Answer
1
active
oldest
votes
The ghc-options flags had to be separately defined in the library part of package.yaml:
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -fwarn-incomplete-uni-patterns
Doing that solved the issue.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54003482%2fhaskell-stack-ignores-wall-werror-cabal-ghc-options-flags-when-building%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The ghc-options flags had to be separately defined in the library part of package.yaml:
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -fwarn-incomplete-uni-patterns
Doing that solved the issue.
add a comment |
The ghc-options flags had to be separately defined in the library part of package.yaml:
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -fwarn-incomplete-uni-patterns
Doing that solved the issue.
add a comment |
The ghc-options flags had to be separately defined in the library part of package.yaml:
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -fwarn-incomplete-uni-patterns
Doing that solved the issue.
The ghc-options flags had to be separately defined in the library part of package.yaml:
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
- -fwarn-incomplete-uni-patterns
Doing that solved the issue.
answered Jan 2 at 11:13


Petras PurlysPetras Purlys
429211
429211
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54003482%2fhaskell-stack-ignores-wall-werror-cabal-ghc-options-flags-when-building%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I can't reproduce this issue. I just created a fresh stack project (
stack new foo
), added-Wall -Werror
as you did to the executable section inpackage.yaml
, removed a signature to trigger a warning inapp/Main.hs
, thenstack build
gave an error, as expected. Can you show the commands you ran and the resulting output?– Li-yao Xia
Jan 2 at 9:57
I will be able to show yhe output in an hour or so. For the time being, the command I ran was s simple stack build (that just happily compiled even though there were unused imports, shadowing... . However, running stack build --pedantic worked as expected - it showed the unused imports and other warnings.
– Petras Purlys
Jan 2 at 10:05
BTW, Which Stack version are you using ?
– Sibi
Jan 2 at 10:11
1
Can you post your entire package.yaml ?
– Sibi
Jan 2 at 11:01
1
Thanks @Sibi, while doing that I've noticed that it's possible do define ghc-options for the library part as well. Doing that solved the issue.
– Petras Purlys
Jan 2 at 11:11