Skip to content

Commit 647d420

Browse files
committed
update
1 parent 7e2dba7 commit 647d420

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

builtins-test-intrinsics/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ publish = false
66

77
[dependencies]
88
compiler_builtins = { path = "../compiler-builtins", features = ["compiler-builtins"]}
9-
panic-handler = { path = '../crates/panic-handler' }
9+
panic-handler = { path = "../crates/panic-handler" }
1010

1111
[features]
1212
c = ["compiler_builtins/c"]
13+
14+
[profile.release]
15+
panic = "abort"
16+
17+
[profile.dev]
18+
panic = "abort"

ci/run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ rm -f "${rlib_paths[@]}"
124124
build_intrinsics_test() {
125125
cargo build \
126126
--target "$target" --verbose \
127+
--lockfile-path "${CARGO_TARGET_DIR:-target}/Cargo.test-intrinsics.lock" \
127128
--manifest-path builtins-test-intrinsics/Cargo.toml "$@"
128129
}
129130

0 commit comments

Comments
 (0)