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
There is a bug when trying to build for windows arm64 target. See in line 145 concatenates a path of env $OUT_DIR to "/outlined_atomics.rs". The problem arises in windows because $OUT_DIR may resolve to an unc path in windows, and those do not support having forward slashes. Using something like Path.join(...) should fix this bug.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
There is a bug when trying to build for windows arm64 target. See in line 145 concatenates a path of env
$OUT_DIR
to"/outlined_atomics.rs"
. The problem arises in windows because$OUT_DIR
may resolve to an unc path in windows, and those do not support having forward slashes. Using something likePath.join(...)
should fix this bug.The text was updated successfully, but these errors were encountered: