Skip to content

Commit

Permalink
Wrong target triple
Browse files Browse the repository at this point in the history
```
error[E0461]: couldn't find crate `std` with expected target triple x86_64-unknown-theseus
  |
  = note: the following crate versions were found:
          crate `std`, target triple x86_64-unknown-theseus-18391571932074236353: /Users/klim/Projects/theseus-5/build/std/aarch64-apple-darwin/stage0-std/x86_64-unknown-theseus/release/deps/libstd-ed3cfe7c0dcd5cb9.rlib

error[E0461]: couldn't find crate `std` with expected target triple x86_64-unknown-theseus
 --> applications/test_std/src/lib.rs:1:5
  |
1 | use std::{string::String, vec::Vec};
  |     ^^^
  |
  = note: the following crate versions were found:
          crate `std`, target triple x86_64-unknown-theseus-18391571932074236353: /Users/klim/Projects/theseus-5/build/std/aarch64-apple-darwin/stage0-std/x86_64-unknown-theseus/release/deps/libstd-ed3cfe7c0dcd5cb9.rlib
```

Signed-off-by: Klimenty Tsoutsman <klim@tsoutsman.com>
  • Loading branch information
tsoutsman committed Oct 30, 2023
1 parent b7865f3 commit 091465f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
deny-warnings = false

[build]
cargo = "/Users/klim/.rustup/toolchains/nightly-2023-06-22-aarch64-apple-darwin/bin/cargo"
rustc = "/Users/klim/.rustup/toolchains/nightly-2023-06-22-aarch64-apple-darwin/bin/rustc"
cargo = "/Users/klim/.rustup/toolchains/nightly-2023-10-27-aarch64-apple-darwin/bin/cargo"
rustc = "/Users/klim/.rustup/toolchains/nightly-2023-10-27-aarch64-apple-darwin/bin/rustc"

0 comments on commit 091465f

Please sign in to comment.