Skip to content

Commit 2dba78f

Browse files
committed
macos...
1 parent 52e60d9 commit 2dba78f

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/macos-grep-headers.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ jobs:
1616
steps:
1717
- name: Print include paths
1818
run: /opt/homebrew/opt/llvm@18/bin/clang++ -E -x c++ - -v < /dev/null
19+
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
20+
if: always()
21+
run: find /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include -type f -exec grep "ip_mreq" {} \;
22+
#run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
23+
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
24+
if: always()
25+
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
1926
- name: Grep /opt/homebrew/opt/llvm@18/include/c++/v1
27+
if: always()
2028
run: grep -R "ip_mreq" "/opt/homebrew/opt/llvm@18/include/c++/v1"
2129
- name: Grep /opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include
30+
if: always()
2231
run: grep -R "ip_mreq" "/opt/homebrew/Cellar/llvm@18/18.1.8/lib/clang/18/include"
23-
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
24-
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include
25-
- name: Grep /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks
26-
run: grep -R "ip_mreq" /Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/System/Library/Frameworks

0 commit comments

Comments
 (0)