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
error: This macro cannot be used on the current target.
You can prevent it from being used in other architectures by
guarding it behind a cfg(any(target_arch = "x86", target_arch = "x86_64")).
--> parser/mysql/src/lex.rs:675:16
|
675 | if is_x86_feature_detected!("sse2") {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro is_x86_feature_detected (in Nightly builds, run with -Z macro-backtrace for more info)
What version of Pisanix are you using?
What operating system and CPU are you using?
Steps to reproduce
What did you expect?
What did happened?
The text was updated successfully, but these errors were encountered:
It seems like cfg!(any(target_arch = "x86", target_arch = "x86_64")) didn't exclude the target arch, I updated it with a general macro #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] and compiled successfully.
Bug Report
error: This macro cannot be used on the current target.
You can prevent it from being used in other architectures by
guarding it behind a cfg(any(target_arch = "x86", target_arch = "x86_64")).
--> parser/mysql/src/lex.rs:675:16
|
675 | if is_x86_feature_detected!("sse2") {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro
is_x86_feature_detected
(in Nightly builds, run with -Z macro-backtrace for more info)What version of Pisanix are you using?
What operating system and CPU are you using?
Steps to reproduce
What did you expect?
What did happened?
The text was updated successfully, but these errors were encountered: