Browse Source

github: inhibit deprecated declarations for clang on macOS

... as they otherwise cause ldap build errors in the CI.

Fixes #7081
Closes #7082
Daniel Stenberg 2 years ago
parent
commit
e53a0f6833
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/macos.yml

+ 1 - 1
.github/workflows/macos.yml

@@ -98,7 +98,7 @@ jobs:
         compiler:
         - CC: clang
           CXX: clang++
-          CFLAGS: "-mmacosx-version-min=10.15"
+          CFLAGS: "-mmacosx-version-min=10.15 -Wno-deprecated-declarations"
         - CC: gcc-8
           CXX: g++-8
           CFLAGS: "-mmacosx-version-min=10.15 -Wno-error=undef -Wno-error=conversion"