2 releases (1 stable)

1.0.0 Dec 2, 2022
0.1.0 Nov 28, 2022

#186 in Memory management

Download history 9200/week @ 2024-01-05 9454/week @ 2024-01-12 9267/week @ 2024-01-19 9326/week @ 2024-01-26 10289/week @ 2024-02-02 9957/week @ 2024-02-09 11249/week @ 2024-02-16 10245/week @ 2024-02-23 11501/week @ 2024-03-01 11183/week @ 2024-03-08 11078/week @ 2024-03-15 11127/week @ 2024-03-22 10952/week @ 2024-03-29 11467/week @ 2024-04-05 11539/week @ 2024-04-12 9225/week @ 2024-04-19

44,882 downloads per month

MIT OR Apache-2.0 OR LGPL-2.1-or-later

32KB
222 lines

r-efi-alloc

UEFI Memory Allocator Integration

The r-efi-alloc project integrates the UEFI memory allocator routines with the rust standard library allocation hooks. This allows using the alloc standard library of rust on UEFI systems.

Project

Requirements

The requirements for this project are:

  • rustc >= 1.62.0
  • r-efi >= 4.0.0

Build

To build this project, run:

cargo build

Available configuration options are:

  • allocator_api: Provide integration with the experimental upstream rust allocators (tracked with the allocator_api feature).

  • examples: This feature-selector enables compilation of examples. This is disabled by default, since they will only compile successfully on UEFI targets.

No special requirements exist to compile for UEFI targets. Native compilations work out of the box without any adjustments. For cross-compilations, either use the toolchains distributed through rustup, build your own toolchains, or use -Zbuild-std as shown below.

If you do not use the official toolchains, you will likely need a nightly rust compiler with the rust-src component enabled:

rustup toolchain install nightly
# OR
rustup update

rustup component add --toolchain nightly rust-src

Be sure to update all components to the most recent version.

Build via: cargo/rustc nightly with -Zbuild-std
cargo +nightly build \
    -Zbuild-std=core,compiler_builtins,alloc \
    -Zbuild-std-features=compiler-builtins-mem \
    --target x86_64-unknown-uefi \
    --features examples \
    --examples

Repository:

License:

  • MIT OR Apache-2.0 OR LGPL-2.1-or-later
  • See AUTHORS file for details.

Dependencies

~255–455KB
~11K SLoC