We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e089313 commit 078ab0bCopy full SHA for 078ab0b
.github/workflows/main.yml
@@ -127,5 +127,5 @@ jobs:
127
steps:
128
- uses: actions/checkout@v5
129
- run: ci/install-dependencies.sh
130
- - run: (echo "#include <regex.h>"; echo REG_ENHANCED) | clang -E -
131
- - run: (echo "#include <regex.h>"; echo REG_ENHANCED) | clang -D __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__=140000 -E -
+ - run: printf "%s\n" "#include <regex.h>" __MAC_OS_X_VERSION_MIN_REQUIRED REG_ENHANCED | clang -E -
+ - run: printf "%s\n" "#include <regex.h>" __MAC_OS_X_VERSION_MIN_REQUIRED REG_ENHANCED | clang -D__ENVIRONMENT_OS_VERSION_MIN_REQUIRED__=140000 -E -
0 commit comments