We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.rs contains this snippet:
build.rs
if is_debug_mode() && opt_level_eq(0) { configure_flags.push("--disable-optimizations"); configure_flags.push("--disable-debug"); configure_flags.push("--disable-stripping"); }
This causes debug builds to explicitly request that debugging symbols not be built.
Maybe something like:
if is_debug_mode() && opt_level_eq(0) { configure_flags.push("--disable-optimizations"); configure_flags.push("--disable-stripping"); configure_flags.push("--enable-debug"); } else { configure_flags.push("--disable-debug"); }
would be better.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
build.rs
contains this snippet:This causes debug builds to explicitly request that debugging symbols not be built.
Maybe something like:
would be better.
The text was updated successfully, but these errors were encountered: