Belirli bir yığın yürütülebilir dosya nasıl oluşturulur, örn. gibi projectname.cabal
belirtilenlerden:Haskell Stack belirli bir yürütülebilir yapı oluşturma
executable executable-name
hs-source-dirs: tools
main-is: ExecutableModule.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, hsass
, hlibsass
Ben executable-name
ve başka hiçbir derlemek gerekir.
stack build --executable executable-name
bu. (ref. [commercialhaskell/stack/issues/1406] (https://github.com/commercialhaskell/stack/issues/1406)) – Yosh