Skip to content

Commit cb47932

Browse files
Tropix126max-niederman
authored andcommitted
don't compile with +thumb-mode feature for now
1 parent ed94bfe commit cb47932

File tree

3 files changed

+13
-62
lines changed

3 files changed

+13
-62
lines changed

Cargo.lock

Lines changed: 1 addition & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -4955,47 +4955,6 @@ version = "1.1.0"
49554955
source = "registry+https://github.com/rust-lang/crates.io-index"
49564956
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
49574957

4958-
[[package]]
4959-
name = "std"
4960-
version = "0.0.0"
4961-
dependencies = [
4962-
"addr2line 0.22.0",
4963-
"alloc",
4964-
"cfg-if",
4965-
"compiler_builtins",
4966-
"core",
4967-
"dlmalloc",
4968-
"fortanix-sgx-abi",
4969-
"hashbrown",
4970-
"hermit-abi 0.4.0",
4971-
"libc",
4972-
"miniz_oxide",
4973-
"object 0.36.0",
4974-
"panic_abort",
4975-
"panic_unwind",
4976-
"profiler_builtins",
4977-
"r-efi",
4978-
"r-efi-alloc",
4979-
"rand",
4980-
"rand_xorshift",
4981-
"rustc-demangle",
4982-
"std_detect",
4983-
"unwind",
4984-
"vex-sdk",
4985-
"wasi",
4986-
]
4987-
4988-
[[package]]
4989-
name = "std_detect"
4990-
version = "0.1.5"
4991-
dependencies = [
4992-
"cfg-if",
4993-
"compiler_builtins",
4994-
"libc",
4995-
"rustc-std-workspace-alloc",
4996-
"rustc-std-workspace-core",
4997-
]
4998-
49994958
[[package]]
50004959
name = "string_cache"
50014960
version = "0.8.7"
@@ -5732,26 +5691,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
57325691
name = "version_check"
57335692
version = "0.9.5"
57345693
source = "registry+https://github.com/rust-lang/crates.io-index"
5735-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
5736-
5737-
[[package]]
5738-
name = "vex-sdk"
5739-
version = "0.17.0"
5740-
source = "registry+https://github.com/rust-lang/crates.io-index"
5741-
checksum = "f285bbc2b96fc4c7fae42ebe365dd2e9121e7002a58b1a9e0e4b1d14dba4d6d0"
5742-
dependencies = [
5743-
"compiler_builtins",
5744-
"rustc-std-workspace-core",
5745-
]
5746-
5747-
[[package]]
5748-
name = "wait-timeout"
5749-
version = "0.2.0"
5750-
source = "registry+https://github.com/rust-lang/crates.io-index"
5751-
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
5752-
dependencies = [
5753-
"libc",
5754-
]
5694+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
57555695

57565696
[[package]]
57575697
name = "walkdir"

compiler/rustc_target/src/spec/targets/armv7a_vex_v5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub(crate) fn target() -> Target {
2020
exe_suffix: ".elf".into(),
2121
cpu: "cortex-a9".into(),
2222
abi: "eabihf".into(),
23-
features: "+v7,+neon,+vfp3,+thumb2,+thumb-mode".into(),
23+
features: "+v7,+neon,+vfp3,+thumb2".into(),
2424
linker: Some("rust-lld".into()),
2525
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
2626
link_script: Some(LINK_SCRIPT.into()),

library/Cargo.lock

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ dependencies = [
348348
"rustc-demangle",
349349
"std_detect",
350350
"unwind",
351+
"vex-sdk",
351352
"wasi",
352353
"windows-targets 0.0.0",
353354
]
@@ -415,6 +416,16 @@ dependencies = [
415416
"rustc-std-workspace-core",
416417
]
417418

419+
[[package]]
420+
name = "vex-sdk"
421+
version = "0.17.0"
422+
source = "registry+https://github.com/rust-lang/crates.io-index"
423+
checksum = "f285bbc2b96fc4c7fae42ebe365dd2e9121e7002a58b1a9e0e4b1d14dba4d6d0"
424+
dependencies = [
425+
"compiler_builtins",
426+
"rustc-std-workspace-core",
427+
]
428+
418429
[[package]]
419430
name = "wasi"
420431
version = "0.11.0+wasi-snapshot-preview1"

0 commit comments

Comments
 (0)