diff options
author | 2025-05-08 14:18:53 +0100 | |
---|---|---|
committer | 2025-05-08 14:33:32 +0100 | |
commit | 6d443f13fdeb78ea9dffab8762222572038d2ce3 (patch) | |
tree | 2344f741ee6969afcd5fffdeea0f03fd3454ecb7 /filamento/.cargo | |
parent | 5f1bc4f2807614dca1ac84136a5c355fde65543a (diff) | |
download | luz-6d443f13fdeb78ea9dffab8762222572038d2ce3.tar.gz luz-6d443f13fdeb78ea9dffab8762222572038d2ce3.tar.bz2 luz-6d443f13fdeb78ea9dffab8762222572038d2ce3.zip |
feat(filamento): OPFS database
Diffstat (limited to 'filamento/.cargo')
-rw-r--r-- | filamento/.cargo/config.toml | 19 |
1 files changed, 19 insertions, 0 deletions
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"] + |