-
Notifications
You must be signed in to change notification settings - Fork 124
CMake: Support RelWithDebInfo configuration #475
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
base: master
Are you sure you want to change the base?
Conversation
Support optimized compiles with debugging info (e.g., "-O2 -g" for GCC/Clang.) Useful with 'valgrind' to produce intelligible output.
16bbaf8
to
c12e617
Compare
- Multi-configuration builders (`msbuild`, `xcodebuild`): The simulator | ||
executables will appear underneath individual configuration subdirectories | ||
("Debug" and "Release"). | ||
("Debug", "Release" and "RelWithDebInfo"). |
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.
An Oxford comma would be good here, I think. It gets confusing otherwise.
[string] $flavor = "vs2022", | ||
|
||
## The target build configuration. Valid values: "Release" and "Debug" | ||
## The target build configuration. Valid values: "Release", "Debug" and |
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.
Oxford comma is less needed here but I'd still recommend it.
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.
@pmetzger: My writing habits were pretty ingrained by my PhD advisor's admin, who proofed and edited my dissertation. She completely disabused me of writing with Oxford commas. Happy to have a five gin martini debate elsewhere.
mingw | ||
ucrt | ||
--config (-c) Specifies the build configuration: 'Release' or 'Debug' | ||
--config (-c) Specifies the build configuration: 'Release', 'Debug' or |
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.
I recommend an Oxford comma again.
Support optimized compiles with debugging info (e.g., "-O2 -g" for GCC/Clang.) Useful with 'valgrind' to produce intelligible output.