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
For all... probably 0 people running Nimble on a raspberry pi.
Discovered while doing #980, basically, if you try to run swift test on an Arm box, you get a bunch of build errors like the following:
Googling around, it seems like this is just a register or something that isn't in the arm version of GLIBC?
We can definitely avoid this by wrapping our throwAssertion matcher around an #if canImport(Darwin) || arch(x86_64) compilation block. But, I'd love an actual fix for this if we can do that.
The text was updated successfully, but these errors were encountered:
For all... probably 0 people running Nimble on a raspberry pi.
just FYI, the same issues occur when building on an Apple Silicon mac.
so, anyone doing server-side swift who wants to run their tests in a linux container (eg: vscode dev container) cannot use Nimble ATM.
For all... probably 0 people running Nimble on a raspberry pi.
Discovered while doing #980, basically, if you try to run
swift test
on an Arm box, you get a bunch of build errors like the following:Googling around, it seems like this is just a register or something that isn't in the arm version of GLIBC?
We can definitely avoid this by wrapping our throwAssertion matcher around an
#if canImport(Darwin) || arch(x86_64)
compilation block. But, I'd love an actual fix for this if we can do that.The text was updated successfully, but these errors were encountered: