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
{{ message }}
This repository was archived by the owner on Oct 28, 2024. It is now read-only.
It's very important to not use any #if os(...)/#if arch(...) etc in Package.swift files. The problem with that is that Package.swift is evaluated on the compiling machine for the compiling machine. For cross-compilation however, the compiling machine and the target machine do not match.
Instead of doing it in Package.swift, CBacktrace/Backtrace should check in the .swift/.c files what platform they're on because that will automatically evaluate to what the target machine is.