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
The is() function gets defined twice, because you have one cfg statement that tests for OS (unix) and one that tests for architecture (wasm32). Emscripten pretends to be unix, so is() gets defined twice.
Proposed fix: turn the wasm32 architecture into an OS test for unknown.
The text was updated successfully, but these errors were encountered:
The
is()
function gets defined twice, because you have onecfg
statement that tests for OS (unix) and one that tests for architecture (wasm32). Emscripten pretends to be unix, sois()
gets defined twice.Proposed fix: turn the
wasm32
architecture into an OS test forunknown
.The text was updated successfully, but these errors were encountered: