-
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
#2909 is not enough. hard warning from meson #2917
Comments
Thank you for the notice @myungjoo! I understand the problem now. I'm attempting to build Ruy using a Meson subproject. cmake = import('cmake')
ruy_proj = cmake.subproject('ruy') The issue is that Ruy receives the same warning from Meson when dealing with the third party, resulting in a sandbox violation error. It works perfectly fine when building with CMake.
What would be the best decision we can make in this situation? |
FYI, I'm currently using Meson version 1.7.99, which I believe is causing the warning to appear as an error. When I previously worked with Meson version 0.53.0, I was able to build Ruy successfully using Meson. |
Will need to split back subprojects and third_party directories. That will be sufficient. Line 12 in 71a4bb2
In my opinion we should move This will make meson happy as |
After #2909
Plus, ...
You are not building ruy or linking ruy. You are only including its header.
The text was updated successfully, but these errors were encountered: