File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 4.2.1 )
22
3+ # Set up Homebrew GCC@15 toolchain for CMake
4+
35find_program (BREW_EXE brew )
46
57if (NOT BREW_EXE)
@@ -29,13 +31,13 @@ execute_process(
2931)
3032
3133find_program (CMAKE_C_COMPILER
32- NAMES gcc
34+ NAMES gcc-15
3335 HINTS "${GCC_PREFIX} /bin"
3436 NO_DEFAULT_PATH
3537)
3638
3739find_program (CMAKE_CXX_COMPILER
38- NAMES g++
40+ NAMES g++-15
3941 HINTS "${GCC_PREFIX} /bin"
4042 NO_DEFAULT_PATH
4143)
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 4.2.1 )
22
3+ # Set up Homebrew LLVM & Ninja toolchain for CMake
4+
35find_program (BREW_EXE brew )
46
57if (NOT BREW_EXE)
@@ -65,4 +67,4 @@ if(APPLE)
6567 OUTPUT_STRIP_TRAILING_WHITESPACE
6668 COMMAND_ERROR_IS_FATAL ANY
6769 )
68- endif ()
70+ endif ()
You can’t perform that action at this time.
0 commit comments