Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RUST_TARGET_PATH = { value = "support/targets", relative = true }

[build]
target = "aarch64-sel4"
rustflags = ["-Zunstable-options"]

[unstable]
unstable-options = true
Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ENV PATH=/root/.cargo/bin:$PATH

ENV SEL4_INSTALL_DIR=/opt/seL4

RUN git clone --branch 14.0.0 https://github.com/seL4/seL4.git
RUN git clone --branch 15.0.0 https://github.com/seL4/seL4.git

RUN set -eux; \
cd seL4; \
Expand All @@ -68,7 +68,7 @@ RUN set -eux; \

RUN set -eux; \
url="https://github.com/seL4/rust-sel4"; \
rev="2c9786744900433f37e803c25ab208835a802cf3"; \
rev="7a2321f2d84310ba7a09fe7f5988e6dcecde3566"; \
common_args="--git $url --rev $rev --root $SEL4_INSTALL_DIR"; \
CC_aarch64_unknown_none=aarch64-linux-gnu-gcc \
SEL4_PREFIX=$SEL4_INSTALL_DIR \
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
#

[toolchain]
channel = "nightly-2025-10-20"
channel = "nightly-2026-03-18"
components = [ "rustfmt", "rust-src", "rustc-dev", "llvm-tools-preview", "rust-analyzer" ]
3 changes: 2 additions & 1 deletion support/targets/aarch64-sel4.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"arch": "aarch64",
"crt-objects-fallback": "false",
"data-layout": "e-m:e-p270:32:32-p271:32:32-p272:64:64-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128-Fn32",
"default-uwtable": true,
"disable-redzone": true,
"exe-suffix": ".elf",
"features": "+v8a,+strict-align,+neon,+fp-armv8",
"features": "+v8a,+strict-align,+neon",
"has-thread-local": true,
"linker": "rust-lld",
"linker-flavor": "gnu-lld",
Expand Down
Loading