Skip to content

Commit 43f08cb

Browse files
randallzwoop
authored andcommitted
Refine Inline.cc carveout for arm64 darwin builds (#7662)
This allows the macOS release build to complete successfully (cherry picked from commit 43452ca)
1 parent 05bc1bf commit 43f08cb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

iocore/aio/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_AIO.h"
3232
#endif

iocore/cache/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_Cache.h"
3232
#endif

iocore/dns/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_DNS.h"
3232
#endif

iocore/eventsystem/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_EventSystem.h"
3232
#endif

iocore/hostdb/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_HostDB.h"
3232
#endif

iocore/net/Inline.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*/
2828

29-
#if !defined(darwin)
29+
#if !(defined(darwin) && defined(__aarch64__))
3030
#define TS_INLINE
3131
#include "P_Net.h"
3232
#endif

0 commit comments

Comments
 (0)