Skip to content

Commit 8ddc5f1

Browse files
Tropix126max-niederman
authored andcommitted
don't compile with +thumb-mode feature for now
1 parent 3ec93ea commit 8ddc5f1

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
@@ -4987,47 +4987,6 @@ version = "1.1.0"
49874987
source = "registry+https://github.com/rust-lang/crates.io-index"
49884988
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
49894989

4990-
[[package]]
4991-
name = "std"
4992-
version = "0.0.0"
4993-
dependencies = [
4994-
"addr2line 0.22.0",
4995-
"alloc",
4996-
"cfg-if",
4997-
"compiler_builtins",
4998-
"core",
4999-
"dlmalloc",
5000-
"fortanix-sgx-abi",
5001-
"hashbrown",
5002-
"hermit-abi 0.4.0",
5003-
"libc",
5004-
"miniz_oxide",
5005-
"object 0.36.0",
5006-
"panic_abort",
5007-
"panic_unwind",
5008-
"profiler_builtins",
5009-
"r-efi",
5010-
"r-efi-alloc",
5011-
"rand",
5012-
"rand_xorshift",
5013-
"rustc-demangle",
5014-
"std_detect",
5015-
"unwind",
5016-
"vex-sdk",
5017-
"wasi",
5018-
]
5019-
5020-
[[package]]
5021-
name = "std_detect"
5022-
version = "0.1.5"
5023-
dependencies = [
5024-
"cfg-if",
5025-
"compiler_builtins",
5026-
"libc",
5027-
"rustc-std-workspace-alloc",
5028-
"rustc-std-workspace-core",
5029-
]
5030-
50314990
[[package]]
50324991
name = "string_cache"
50334992
version = "0.8.7"
@@ -5764,26 +5723,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
57645723
name = "version_check"
57655724
version = "0.9.5"
57665725
source = "registry+https://github.com/rust-lang/crates.io-index"
5767-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
5768-
5769-
[[package]]
5770-
name = "vex-sdk"
5771-
version = "0.17.0"
5772-
source = "registry+https://github.com/rust-lang/crates.io-index"
5773-
checksum = "f285bbc2b96fc4c7fae42ebe365dd2e9121e7002a58b1a9e0e4b1d14dba4d6d0"
5774-
dependencies = [
5775-
"compiler_builtins",
5776-
"rustc-std-workspace-core",
5777-
]
5778-
5779-
[[package]]
5780-
name = "wait-timeout"
5781-
version = "0.2.0"
5782-
source = "registry+https://github.com/rust-lang/crates.io-index"
5783-
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
5784-
dependencies = [
5785-
"libc",
5786-
]
5726+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
57875727

57885728
[[package]]
57895729
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)