Testing automatic releases
All checks were successful
Release on main branches / build (ubuntu-20.04) (push) Successful in 45s
Initializing rust environment. / build (ubuntu-20.04) (push) Successful in 47s

This commit is contained in:
nichkara
2025-09-20 19:28:34 +02:00
parent c7ef45ca9e
commit fd74b62df2
2 changed files with 57 additions and 0 deletions

View File

@@ -4,3 +4,19 @@ version = "0.1.0"
edition = "2024"
[dependencies]
[lib]
name = "tm_interpreter"
crate-type = ["staticlib"]
[profile.release]
opt-level = "z"
lto = true
# x86_64 (glibc, statisch)
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]
# aarch64 (arm64, statisch)
[target.aarch64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]