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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub(crate) fn target() -> Target {
max_atomic_width: Some(64),

// Unwinding on GPUs is not useful.
panic_strategy: PanicStrategy::Abort,
panic_strategy: PanicStrategy::ImmediateAbort,

// amdgpu backend does not support libcalls.
no_builtins: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub(crate) fn target() -> Target {
max_atomic_width: Some(64),

// Unwinding on CUDA is neither feasible nor useful.
panic_strategy: PanicStrategy::Abort,
panic_strategy: PanicStrategy::ImmediateAbort,

// Needed to use `dylib` and `bin` crate types and the linker.
dynamic_linking: true,
Expand Down
Loading