Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ rusty-tags.*
.cproject
.project

# Clangd creates this to cache its results
.cache/

# The code cache is a transient file.
compile_commands.json

# Compiled python modules.
*.pyc

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = ["sim"]
exclude = ["ptest"]
resolver = "2"
default-members = ["sim"]

# The simulator runs very slowly without optimization. A value of 1
# compiles in about half the time, but runs about 5-6 times slower. 2
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes.d/vscode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- A few changes to make vscode nicer, including a default package to build at
the top level, and ignoring some of the cache files from vscode.
Loading