David Spies
David Spies
When running with `--verbose 7` I get ``` $ ghc-mod --verbose 7 list info: Found Stack project at: /Users/davidspies/workspace/myproject info: Using Stack project at: /Users/davidspies/workspace/myproject DEBUG: setup configuration is out...
Ok, I think I get it now. Our project is configured like: ``` project: stack.yaml .stack-work projectsomepackage: projectsomepackage.cabal src/Project/Some: MyModule.hs MyModuleDependency.hs projectotherpackage: projectotherpackage.cabal src/Project/Other: OtherModule.hs ``` If I try to...
Oh, but also, there's still no `setup-config` file. We're actually using `shake` which in turn calls `stack`, but maybe it does something to prevent that file from being generated. What...
What's the status on this? Is there a known workaround?
I just now tried that and it didn't work. I even tried setting: `needsHscInterpreted = const True` and it still says > The static form is not supported in interpreted...
Oh, I had it backwards. It works when I change it to `const False`
``` remote = SshMachine(...) cmd = remote['echo']['hi'] sess = remote.session() proc = sess.popen(cmd) ```
@sol The error message is certainly clear, but it's not useful for debugging if `elements` is called in a lot of places. For debugging purposes, I'd like to know _which_...
Unfortunately I don't know enough about the bug or QuickCheck's internals to be much help in constructing a MWE. How would I run it in "standalone QuickCheck"?