Skip to content

Commit b803719

Browse files
committed
macos testing
1 parent 58681ab commit b803719

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

.github/workflows/compiler-support.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Compiler Compatibility CI
33
on:
44
push:
55
branches: [master]
6-
pull_request:
6+
#pull_request:
77

88
jobs:
99
build:
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+

src/io_engine_generic_unix.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@
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

0 commit comments

Comments
 (0)