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 update to Spidermonkey 128 vendored two new crates:
mozjs_sys/mozjs/intl/icu_capi
mozjs-sys/mozjs/intl/icu_segmenter_data
cargo vendor places these crates in the top-level vendor directory, leaving the location the mozjs-sys crate empty and causing the build (when forcing build from source or offline build) to fail with:
Path specified in LOCAL_INCLUDES does not exist: /intl/icu_capi/c/include (resolved to /Users/jschwender/Dev/servo/vendor/mozjs_sys/mozjs/intl/icu_capi/c/include)
The text was updated successfully, but these errors were encountered:
icu_capi = "1.4.0"# keep in sync with intl/icu_capi/Cargo.toml
(maybe cargo still picks them up due to existence of Cargo.toml, so removing them could fix this). Although it would be more right to patch SM to use headers from our intl_capi crate instead of one provided in tree.
The update to Spidermonkey 128 vendored two new crates:
cargo vendor
places these crates in the top-level vendor directory, leaving the location themozjs-sys
crate empty and causing the build (when forcing build from source or offline build) to fail with:The text was updated successfully, but these errors were encountered: