You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0428]: the name `LINKER_VAR` is defined multiple times
--> /Users/x/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dexterous_developer_internal-0.0.12/src/hot/env.rs:140:5
|
137 | const LINKER_VAR: &str = "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER";
| ------------------------------------------------------------------------- previous definition of the value `LINKER_VAR` here
...
140 | const LINKER_VAR: &str = "CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `LINKER_VAR` redefined here
|
= note: `LINKER_VAR` must be defined only once in the value namespace of this module
Additional information
cfg(target_arch = "aarch64") and cfg(not(target_arch)) are both true
The text was updated successfully, but these errors were encountered:
Looks like there were a few additional issues around Mac OS Sonoma & current rust/bevy (bevyengine/bevy#10524), as well as a break in the CI image for macos. Currently looks like both were fixed, but again waiting for the tests to confirm before pushing an update
Version
v0.0.12
Operating system & version
Mac OS Sonoma 14.1 (Apple silicon)
What you did
I ran
cargo install dexterous_developer_cli
What you expected to happen
The CLI should have compiled successfully
What actually happened
The compilation failed with this error:
Additional information
cfg(target_arch = "aarch64")
andcfg(not(target_arch))
are both trueThe text was updated successfully, but these errors were encountered: