23 lines
413 B
TOML
23 lines
413 B
TOML
[package]
|
|
name = "tm_interpreter"
|
|
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"]
|