Skip to content

Commit 6d56cd8

Browse files
committed
sim: Move Cargo package to top level
Instead of having to cd into the 'sim' directory, create a top-level Cargo.toml file that adds the sim as a workspace. For the most part, this doesn't change how the simulator works. It is still possible to run `cargo test ...` within the `sim` directory. However, the `target` directory will reside at the top-level of the tree instead of within the sim directory. One change is that running cargo commands at the top of the tree will run those commands on all of the packages found within the tree. Specific packages can be tested by either changing to the directory of that package, or passing `-p <dir>` to the cargo test command (i.e. `cargo test -p bootsim`). The other visible change from this commit is that the 'target' directory will always be at the top of the tree, rather than in particular directory where the test is run. Any scripts or tools that expect this to be in a certainly location, will have to be modified. Signed-off-by: David Brown <david.brown@linaro.org>
1 parent 7f8c0a2 commit 6d56cd8

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ rusty-tags.*
2525
# Python egg metadata, regenerated from source files by setuptools.
2626
/scripts/*.egg-info
2727
/scripts/*.egg
28+
29+
# The target directory from Rust development
30+
/target/

sim/Cargo.lock Cargo.lock

File renamed without changes.

Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[workspace]
2+
members = ["sim"]
3+
exclude = ["ptest"]
4+
5+
# The simulator runs very slowly without optimization. A value of 1
6+
# compiles in about half the time, but runs about 5-6 times slower. 2
7+
# and 3 are hardly different in either compile time or performance.
8+
# Use 2 in case that makes the code slightly more debuggable.
9+
[profile.test]
10+
opt-level = 2
11+
12+
[profile.dev]
13+
opt-level = 2

sim/Cargo.toml

-10
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,3 @@ cipher = "0.3"
4949
aes = { version = "0.7.4", features = ["ctr"] }
5050
base64 = "0.13.0"
5151
typenum = "1.13.0"
52-
53-
# The simulator runs very slowly without optimization. A value of 1
54-
# compiles in about half the time, but runs about 5-6 times slower. 2
55-
# and 3 are hardly different in either compile time or performance.
56-
# Use 2 in case that makes the code slightly more debuggable.
57-
[profile.test]
58-
opt-level = 2
59-
60-
[profile.dev]
61-
opt-level = 2

0 commit comments

Comments
 (0)