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
RUSTFLAGS does not quite work for the target-feature support as mentioned in #1137
, as it passes the target-feature to both host (for plugins) and target platforms during compilation. For cross-compile to Android/ARM, we need to pass target-feature=+neon in Servo, and this results in several hundred warnings about an unsupported feature for all of the plugin compilations.
Is there a plan for a RUSTTARGETFLAGS vs. RUSTHOSTFLAGS or similar?
RUSTFLAGS
does not quite work for thetarget-feature
support as mentioned in #1137, as it passes the
target-feature
to both host (for plugins) and target platforms during compilation. For cross-compile to Android/ARM, we need to passtarget-feature=+neon
in Servo, and this results in several hundred warnings about an unsupported feature for all of the plugin compilations.Is there a plan for a
RUSTTARGETFLAGS
vs.RUSTHOSTFLAGS
or similar?CC @alexcrichton
The text was updated successfully, but these errors were encountered: