We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0127c3f commit a833d11Copy full SHA for a833d11
build-support/src/main/kotlin/aws/sdk/kotlin/gradle/crt/CMakeTasks.kt
@@ -126,7 +126,7 @@ private fun Project.registerCmakeConfigureTask(
126
// The default CMake generator on Windows is "NMake Makefiles", requiring nmake.exe which is not installed by default on many hosts.
127
// We use msys2/GCC to build, so configure "Unix Makefiles" instead
128
if (HostManager.hostIsMingw && knTarget.konanTarget.family == Family.MINGW) {
129
- args.addAll(listOf("-G", "Unix Makefiles"))
+ args.addAll(listOf("-G", "MSYS Makefiles"))
130
}
131
132
// FIXME? Compiling s2n-tls on GitHub Actions Ubuntu image (without Docker / cross-compilation) has errors like:
0 commit comments