Haskell stack ignores -Wall -Werror cabal ghc-options flags when building












2















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?










share|improve this question

























  • 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











  • 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
















2















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?










share|improve this question

























  • 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











  • 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














2












2








2








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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











  • 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 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












1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer




























      1














      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.






      share|improve this answer


























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 2 at 11:13









        Petras PurlysPetras Purlys

        429211




        429211
































            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter