File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,35 +34,35 @@ execute_process(
3434)
3535
3636find_program (CMAKE_C_COMPILER
37- NAMES gcc-15
37+ NAMES gcc-HEAD
3838 HINTS "${GCC_PREFIX} /bin"
3939 NO_DEFAULT_PATH
4040 REQUIRED
4141)
4242
4343find_program (CMAKE_CXX_COMPILER
44- NAMES g++-15
44+ NAMES g++-HEAD
4545 HINTS "${GCC_PREFIX} /bin"
4646 NO_DEFAULT_PATH
4747 REQUIRED
4848)
4949
5050find_program (CMAKE_AR
51- NAMES gcc-ar-15
51+ NAMES gcc-ar-HEAD
5252 HINTS "${GCC_PREFIX} /bin"
5353 NO_DEFAULT_PATH
5454 REQUIRED
5555)
5656
5757find_program (CMAKE_RANLIB
58- NAMES gcc-ranlib-15
58+ NAMES gcc-ranlib-HEAD
5959 HINTS "${GCC_PREFIX} /bin"
6060 NO_DEFAULT_PATH
6161 REQUIRED
6262)
6363
6464find_program (CMAKE_NM
65- NAMES gcc-nm-15
65+ NAMES gcc-nm-HEAD
6666 HINTS "${GCC_PREFIX} /bin"
6767 NO_DEFAULT_PATH
6868 REQUIRED
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ struct tuple_leaf {
3737
3838// In GCC 15 name mangling is not implemented for function signatures
3939// with 'deducing this' yet, so we fall back to the old implementation.
40- #if defined(__GNUC__) && !defined(__clang__) && (__GNUC__ <= 15 )
40+ #if defined(__GNUC__) && !defined(__clang__) && (__GNUC__ <= 16 )
4141
4242template <std::size_t I, typename ... Ts>
4343struct index ;
You can’t perform that action at this time.
0 commit comments