Skip to content

Commit 1215568

Browse files
author
Conor
committed
DROP head build
1 parent b436cdd commit 1215568

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

cmake/gcc-brew-toolchain.cmake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,35 @@ execute_process(
3434
)
3535

3636
find_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

4343
find_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

5050
find_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

5757
find_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

6464
find_program(CMAKE_NM
65-
NAMES gcc-nm-15
65+
NAMES gcc-nm-HEAD
6666
HINTS "${GCC_PREFIX}/bin"
6767
NO_DEFAULT_PATH
6868
REQUIRED

src/utils/tuple.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

4242
template <std::size_t I, typename... Ts>
4343
struct index;

0 commit comments

Comments
 (0)