Skip to content

Commit

Permalink
Rust: ignore .pdb files
Browse files Browse the repository at this point in the history
MSVC builds of Rust on Windows automatically generate `*.pdb` files, which
store debugging information. For more information, see:

* rust-lang/rustlings#275
* https://locka99.gitbooks.io/a-guide-to-porting-c-to-rust/content/debugging_rust/#microsoft-visual-studio
  • Loading branch information
RyanGlScott committed Apr 27, 2021
1 parent 218a941 commit d15076e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Rust.gitignore
Expand Up @@ -9,3 +9,6 @@ Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

0 comments on commit d15076e

Please sign in to comment.