In the README it's not indicated that the configuration process should be done with stack-build. For cmake, simply issuing:
$ ~/my-path-to-stack-build/stack-build make
will simply recompile with already-selected compiler. I believe this is the same for configure-based systems, though I could be mistaken. For cmake builds, the following is needed:
$ ~/my-path-to-stack-build/stack-build cmake
$ make
Notice that with cmake, I don't need to use stack-build when issuing make.
In the README it's not indicated that the configuration process should be done with stack-build. For cmake, simply issuing:
will simply recompile with already-selected compiler. I believe this is the same for configure-based systems, though I could be mistaken. For cmake builds, the following is needed:
Notice that with cmake, I don't need to use stack-build when issuing make.