-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
meson: avx condition fix. #2902
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM !
bd340ab
to
59ba19e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall, LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This must be one of the reasons for other PR's CI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
59ba19e
to
f36ad9a
Compare
enable-avx=true is the default option, which breaks the build in other archs in general. 1. Ignore AVX if arch is not x64/x86. 2. Reading get_option should be done only once. Fixed for enable-avx. 2. Corrected the buggy AVX condition. This fix is required by RISC-V. Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
f36ad9a
to
cf3334a
Compare
enable-avx=true is the default option, which breaks the build in other archs in general.
This fix is required by RISC-V: #2638