-
Notifications
You must be signed in to change notification settings - Fork 337
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
--build-system not always available #549
Comments
I'm going to include (1) and (3) in a fix shortly. I'm also going to remove the predetermined 'choices' list for |
So I've stumbled on an unfortunate problem. The cmake build system has its own There is no fix for this other than removing or changing the cmake |
In rez-build's finding on what build-system plugin to use, it only defines the --build-system flag if two or more build systems are detected. This is problematic because there is no way to force the build system if you have build infrastructure that is building codebases that may find a single build system and others find multiple. You can't configure the build infrastructure to always pass a --build-system flag because that will fail for codebases where only a single build system is defined. And you can't leave out that flag because then you'll get errors for multi-build system codebases.
Some options:
The text was updated successfully, but these errors were encountered: