diff options
author | Andrzej Janik <[email protected]> | 2024-05-08 13:19:04 +0000 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2024-05-08 13:19:04 +0000 |
commit | 2000ca4c6a3428a4cf964cfece57f5b26fb0fbe9 (patch) | |
tree | 14493f65a0c40002ac3d08f75a86bc9423ad0dfc /xtask/src/main.rs | |
parent | 27c0e136777a2db49dbb0caa888d561819230493 (diff) | |
download | ZLUDA-2000ca4c6a3428a4cf964cfece57f5b26fb0fbe9.tar.gz ZLUDA-2000ca4c6a3428a4cf964cfece57f5b26fb0fbe9.zip |
Fix trap uinstruction codegen, don't fail build with old Rust versionsbuild_fix
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r-- | xtask/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 3f1f224..d47659f 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -214,6 +214,7 @@ fn build_impl(is_debug: bool) -> Result<Workspace, DynError> { let workspace = Workspace::open(is_debug)?; let mut command = workspace.cargo_command(); command.arg("build"); + command.arg("--locked"); workspace .projects .iter() |