No output will be generated because there is no Main module

Deadly 提交于 2019-12-05 12:26:20

问题


I wrote a simple module called Test:

module Test (main) where

main =
  putStrLn "Hello"

However, when i try to compile it via the following command line:

ghc Test.hs -o my-program

I get the following error:

[1 of 1] Compiling Test             ( Test.hs, Test.o )

<no location info>: error:
    output was redirected with -o, but no output will be generated because there is no Main module.

回答1:


ghc will assume that the main is located in a module called Main (like the compiler says).

ghc however has an option -main-is where you can specify the name of the module where the main function is located. So you can compile with:

ghc -main-is Test Test.hs -o my-program



回答2:


I had the same problem, but in my case I had caused it by adding a module name to the test source file, test/Spec.hs:

module Tests where

main :: IO ()
main = hspec $ do ...

The solution was simply removing the first line:

main :: IO ()
main = hspec $ do ...

This is also the default when you create a project with stack - e.g., stack new myproject.



来源:https://stackoverflow.com/questions/46895199/no-output-will-be-generated-because-there-is-no-main-module

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!