Skip to content

Commit d3e7653

Browse files
committed
Add flag to force disable forkfix rebind
1 parent 5e36ba8 commit d3e7653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BaseBin/forkfix/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void apply_fork_hook(void)
111111
__attribute__((constructor)) static void initializer(void)
112112
{
113113
#ifdef __arm64e__
114-
if (__builtin_available(iOS 16.0, *)) { /* fall through */ }
114+
if (__builtin_available(iOS 16.0, *) || getenv("FORKFIX_DISABLE_REBIND")) { /* fall through */ }
115115
else if (fork_reimpl_init(forkfix___fork)) return;
116116
#endif
117117

0 commit comments

Comments
 (0)