flip-link

adds zero-cost stack overflow protection to your embedded programs

Architecture support

flip-link is known to work with ARM Cortex-M programs that link to version 0.6.x of the [cortex-m-rt] crate and are linked using the linker shipped with the Rust toolchain (LLD). At this time, it hasn't been tested with other architectures or runtime crates.

Installation

flip-link is available on [crates.io]. To install it, run

console $ cargo install flip-link

Usage

Change the linker from rust-lld (the default) to flip-link in .cargo/config.toml

``` toml [target.'cfg(all(targetarch = "arm", targetos = "none"))']

(..)

rustflags = [ "-C", "linker=flip-link", # <- add this # (..) ] ```

NOTE that if you were using GNU ld or GNU gcc to link your program then this won't work. Support for other linkers is being tracked in [issue #1]

Support

flip-link is part of the [Knurling] project, [Ferrous Systems]' effort at improving tooling used to develop for embedded systems.

If you think that our work is useful, consider sponsoring it via [GitHub Sponsors].

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.