Haskell Stack `exec` executable not found despite path being searched

4.8k Views Asked by At

Creating a fresh haskell-stack project fails to find the project-exec executable, despite searching the appropriate path. I'm not sure why. In particular,

stack build creates the project-exec inside $PROJECT_DIR/.stack-work/install/x86_64-linux-ncurses6/.../bin/project-exe

However, stack exec project-exec fails with:

Executable named rse8-exec not found on path: ["$PROJECT_DIR/.stack-work/install/x86_64-linux-ncurses6/lts-7.14/8.0.1/bin", ]

(to clarify, $PROJECT_DIR references and ... are (hopefully) obvious placeholders for paths. the actual error contains the full path)

2

There are 2 best solutions below

0
On BEST ANSWER

Apologies for the lack of attention showed here. This question should probably just be deleted.

Stack creates a file named <project>-exe not <project>-exec.

1
On

Stack replaces dashes - with underscores _. Try stack exec project_exec see if it works.

This should have been a comment actually, but I don't have enough reputation to write a comment, while I have enough to post an answer!