-
Notifications
You must be signed in to change notification settings - Fork 12.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
Turn on CFG_DISABLE_DEBUG by default #22390
Labels
I-compiletime
Issue: Problems and improvements with respect to compile times.
P-medium
Medium priority
Milestone
Comments
pcwalton
added
I-slow
Issue: Problems and improvements with respect to performance of generated code.
A-build
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
labels
Feb 16, 2015
cc #17081 |
cc #22492 |
P-high, 1.0 polish. |
michaelwoerister
removed
the
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
label
Feb 26, 2015
Removed |
emberian
added
I-compiletime
Issue: Problems and improvements with respect to compile times.
and removed
I-slow
Issue: Problems and improvements with respect to performance of generated code.
labels
Mar 25, 2015
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 9, 2015
This makes the default configuration fully optimized, with no debugging options, no llvm asserts, renames --enable-debug to --enable-debug-assertions, and adds --enable-debug as a blanket option that toggles various things, per rust-lang#17665. It does not add a `--enable-release` flag since that would be a no-op. cc @nrc Fixes rust-lang#22390 Fixes rust-lang#17081 Partially addresses rust-lang#17665
bors
added a commit
that referenced
this issue
Apr 9, 2015
This makes the default configuration fully optimized, with no debugging options, no llvm asserts, renames --enable-debug to --enable-debug-assertions, and adds --enable-debug as a blanket option that toggles various things, per #17665. It does not add a `--enable-release` flag since that would be a no-op. cc @nrc Fixes #22390 Fixes #17081 Partially addresses #17665
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
I-compiletime
Issue: Problems and improvements with respect to compile times.
P-medium
Medium priority
There's no reason to have
debug_assert!
enabled for most of our binaries. This is probably a lot of the reason behind our benchmark problems!I nominate for P-high.
The text was updated successfully, but these errors were encountered: