mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
4011703af5
testing_macros: - Make `#[fixture]` relative to cargo manifest dir.
38 lines
601 B
TOML
38 lines
601 B
TOML
|
|
[build]
|
|
|
|
rustdocflags = []
|
|
rustflags = [
|
|
"-C",
|
|
"target-feature=+sse2,+aes",
|
|
]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = []
|
|
|
|
[target.aarch64-unknown-linux-gnu]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
rustflags = []
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
linker = "aarch64-linux-gnu-gcc"
|
|
rustflags = [
|
|
"-C",
|
|
"target-feature=-crt-static",
|
|
"-C",
|
|
"link-arg=-lgcc",
|
|
]
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
linker = "arm-linux-gnueabihf-gcc"
|
|
rustflags = []
|
|
|
|
[target.aarch64-linux-android]
|
|
rustflags = []
|
|
|
|
[target.aarch64-pc-windows-msvc]
|
|
rustflags = []
|
|
|
|
[target.wasm32-unknown-unknown]
|
|
rustflags = []
|