From c674b422fad74c729377e11ada9ecb3f225d8696 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Fri, 11 Apr 2025 17:45:54 -0500 Subject: [PATCH] Removed compiler version number from Windows cmake toolchain files. --- cmake/i686-w64-mingw32.cmake | 2 +- cmake/x86_64-w64-mingw32.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/i686-w64-mingw32.cmake b/cmake/i686-w64-mingw32.cmake index 967c962..eb7ebfc 100644 --- a/cmake/i686-w64-mingw32.cmake +++ b/cmake/i686-w64-mingw32.cmake @@ -27,7 +27,7 @@ set(CMAKE_SYSTEM_PROCESSOR i686) set(triple i686-w64-mingw32) -set(CMAKE_C_COMPILER i686-w64-mingw32-gcc-10-posix) +set(CMAKE_C_COMPILER i686-w64-mingw32-gcc-posix) set(CMAKE_C_COMPILER_TARGET ${triple}) set(CMAKE_CXX_COMPILER i686-w64-mingw32-c++-posix) set(CMAKE_CXX_COMPILER_TARGET ${triple}) diff --git a/cmake/x86_64-w64-mingw32.cmake b/cmake/x86_64-w64-mingw32.cmake index d09dbdc..00823b9 100644 --- a/cmake/x86_64-w64-mingw32.cmake +++ b/cmake/x86_64-w64-mingw32.cmake @@ -27,7 +27,7 @@ set(CMAKE_SYSTEM_PROCESSOR x86_64) set(triple x86_64-w64-mingw32) -set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc-10-posix) +set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc-posix) set(CMAKE_C_COMPILER_TARGET ${triple}) set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-c++-posix) set(CMAKE_CXX_COMPILER_TARGET ${triple})