Skip to content

Commit

Permalink
Disable gcc-11 on macos (#304)
Browse files Browse the repository at this point in the history
There is a compiler issue with __has_cpp_attribute that is causing
these CI configs to fail.
  • Loading branch information
bashbaug authored Aug 12, 2024
1 parent 3807f5c commit 78eeace
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,10 @@ jobs:
COMPILER:
- C_NAME: /usr/bin/clang
CXX_NAME: /usr/bin/clang++
- C_NAME: gcc-11
CXX_NAME: g++-11
# Disabled due to problems with __has_cpp_attribute
# See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114007
#- C_NAME: gcc-11
# CXX_NAME: g++-11
# Disabled due to problems with the __API_AVAILABLE macro
# - C_NAME: gcc-13
# CXX_NAME: g++-13
Expand Down

0 comments on commit 78eeace

Please sign in to comment.