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
The extconf.rb file seems to be hardcoded to use gmake or make under Linux environments. This will fail when a different generator is used, like CMAKE_GENERATOR=Ninja.
CMake projects should use cmake --build to build, which makes CMake automatically use the correct build tool.
(Alternatively, if your project must use a specific kind of build system, you need to override it with the -G parameter when generating the build files.)
As a workaround to install the gem, one can run this:
CMAKE_GENERATOR= gem install rugged
The text was updated successfully, but these errors were encountered:
The
extconf.rb
file seems to be hardcoded to usegmake
ormake
under Linux environments. This will fail when a different generator is used, likeCMAKE_GENERATOR=Ninja
.CMake projects should use
cmake --build
to build, which makes CMake automatically use the correct build tool.(Alternatively, if your project must use a specific kind of build system, you need to override it with the
-G
parameter when generating the build files.)As a workaround to install the gem, one can run this:
The text was updated successfully, but these errors were encountered: