diff options
author | iximeow <me@iximeow.net> | 2025-02-06 00:19:11 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2025-02-06 00:19:11 -0800 |
commit | e2b05ce19c48f34b0fbf3661a6079157eff26fa7 (patch) | |
tree | 6ff9ff50f4ab091db1963a9a13b4643d4e421723 /goodfile | |
parent | 9822e508fd7653f0a8b3c0c5dd3222c24cc09821 (diff) |
actually check no-std configuration does not transitively depend on std
Diffstat (limited to 'goodfile')
-rw-r--r-- | goodfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,4 +13,7 @@ Step.advance("test") Build.run({"cargo", "test"}, {name="test stdlib/fmt"}) Build.run({"cargo", "test", "--no-default-features"}, {name="test nostdlib/fmt"}) +Build.run({"cargo", "rustc", "--", "-C", "link-arg=-nostartfiles"}, {cwd="tests/no_std_check"}) +Build.run({"cargo", "rustc", "--release", "--", "-C", "link-arg=-nostartfiles"}, {cwd="tests/no_std_check"}) + Build.run({"cargo", "build", "--release"}, {cwd="differential-tests", name="build capstone differential"}) |