gpt4 book ai didi

haskell - 如何在cygwin中执行haskell程序

转载 作者:行者123 更新时间:2023-12-02 18:23:39 26 4
gpt4 key购买 nike

我编译了 helloworld.hs 并得到了一个 helloworld.o 文件,我尝试了 ./helloworld,但它不起作用,那么执行 helloworld 的正确方法是什么?我正在使用 cygwin,我只需写下 $ ghc --make helloworld.hs 即可得到 helloworld.hihelloworld.exe.manifesthelloworld.o 文件,我不知道下一步需要做什么...

最佳答案

根据您使用的是 Cygwin ghc 还是 Windows native ghc,您将获得 a.out(历史传统名称)或 helloworld.exe。如果您有 a.out,则需要将其重命名为 .exe 才能在 Windows 上执行。

您可以轻松地告诉 ghc 如何调用可执行文件:ghc -o helloworld.exe --make helloworld.hs

顺便说一句,ghc --help 会告诉你:

To compile and link a complete Haskell program, run the compiler like so:
    ghc-6.8.2 --make Main
where the module Main is in a file named Main.hs (or Main.lhs) in the current directory. The other modules in the program will be located and compiled automatically, and the linked program will be placed in the file a.out' (orMain.exe' on Windows).

关于haskell - 如何在cygwin中执行haskell程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3320567/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com