You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running MINGW=mingw64 cmake . prints the following text, but does not generate a Makefile:
-- Build type set to 'Release'
-- NOTE: Configuring build for Windows release...
-- Configuring done (0.5s)
-- Generating done (0.0s)
-- Build files have been written to: C:/msys64/home/Infinity/umoria-color-5.8.3
As a result, make fails:
make: *** No targets specified and no makefile found. Stop.
Incidentally, it's taken me several hours to even get this far. pacman -S cmake ncurses installs a version of cmake that doesn't work. Instead, one must apparentlypacman -S --needed base-devel mingw-w64-i686-cmake mingw-w64-i686-toolchain mingw-w64-i686-ninja
Compilation in Linux was smooth and trivial.
The text was updated successfully, but these errors were encountered:
I am getting the same issue. Using cmake and gcc with mingw64 on MSYS2. The cmake finishes without any errors, but there is no makefile generated and the make fails. Using the default cmake, not the mingw64 one, hangs at the linking stage with a bunch of undefined references.
Running
MINGW=mingw64 cmake .
prints the following text, but does not generate a Makefile:As a result,
make
fails:Incidentally, it's taken me several hours to even get this far.
pacman -S cmake ncurses
installs a version ofcmake
that doesn't work. Instead, one must apparentlypacman -S --needed base-devel mingw-w64-i686-cmake mingw-w64-i686-toolchain mingw-w64-i686-ninja
Compilation in Linux was smooth and trivial.
The text was updated successfully, but these errors were encountered: