File tree Expand file tree Collapse file tree 3 files changed +20
-9
lines changed Expand file tree Collapse file tree 3 files changed +20
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Compiler Compatibility CI
33on :
44 push :
55 branches : [master]
6- pull_request :
6+ # pull_request:
77
88jobs :
99 build :
Original file line number Diff line number Diff line change 1+ name : Grep Mac headers
2+
3+ on :
4+ pull_request :
5+
6+ jobs :
7+ build :
8+ runs-on : macos-15
9+ name : Find it
10+ env :
11+ CXX : /opt/homebrew/opt/llvm@18/bin/clang++
12+ CC : /opt/homebrew/opt/llvm@18/bin/clang
13+ defaults :
14+ run :
15+ shell : bash -l {0}
16+ steps :
17+ - name : Print include paths
18+ run : /opt/homebrew/opt/llvm@18/bin/clang++ -E -x c++ - -v < /dev/null
19+
Original file line number Diff line number Diff line change 1111#include < sys/types.h>
1212#include < unistd.h>
1313
14- // Mac Testing
15- #include < sys/types.h>
16- #include < sys/socket.h>
17- #include < netinet/in.h>
18- #include < arpa/inet.h>
19- #include < unistd.h>
20- #include < errno.h>
21-
2214// Fixes for MUSL Libc that lacks *64_t types
2315#ifndef __GLIBC__
2416#define off64_t off_t
You can’t perform that action at this time.
0 commit comments