You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previous, we would encounter missing symbol errors like:
"_subprocess_vm_size()", referenced from:
closure #1 () -> Swift.Int in variable initialization expression of Subprocess.(_pageSize in _EDE99368FF43462E0C75AF3C9D4D8F2D) : Swift.Int in AsyncBufferSequence.swift.o
NOTE: found '__subprocess_vm_size' in process_shims.c.o, declaration possibly missing 'extern "C"'
We can reproduce this by running:
xcrun swift build -Xswiftc -cxx-interoperability-mode=default --build-tests
Adding `extern "C"` fixes these issues.
0 commit comments