From 6d443f13fdeb78ea9dffab8762222572038d2ce3 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 8 May 2025 14:18:53 +0100 Subject: feat(filamento): OPFS database --- filamento/.cargo/config.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 filamento/.cargo/config.toml (limited to 'filamento/.cargo') diff --git a/filamento/.cargo/config.toml b/filamento/.cargo/config.toml new file mode 100644 index 0000000..319101a --- /dev/null +++ b/filamento/.cargo/config.toml @@ -0,0 +1,19 @@ +[build] +rustflags = [ + # LLD (shipped with the Rust toolchain) is used as the default linker + # "-C", "link-arg=-Tlink.x", + + # if you run into problems with LLD switch to the GNU linker by commenting out + # this line + # "-C", "linker=arm-none-eabi-ld", + + # if you need to link to pre-compiled C libraries provided by a C toolchain + # use GCC as the linker by commenting out both lines above and then + # uncommenting the three lines below + "-C", + "target-feature=+atomics,+bulk-memory,+mutable-globals", +] + +[unstable] +build-std = ["std", "panic_abort"] + -- cgit