-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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: only generate specified build type ninja files #53511
Conversation
Release and Debug build configurations can not be shared, only generate specified configuration in `configure`.
Specifically, setting |
Landed in 6cb940a |
I should have tried it before approving. I'm not able to work with
|
Release and Debug build configurations can not be shared, only generate specified configuration in `configure`. PR-URL: #53511 Fixes: #53446 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
Yeah, |
Release and Debug build configurations can not be shared, only
generate specified configuration in
configure
with the ninjagenerator. This avoids generating invalid DEBUG ninja build files
when
configure
was not run with--debug
.Fixes: #53446