Skip to content

Commit

Permalink
feat: update swc_core
Browse files Browse the repository at this point in the history
  • Loading branch information
ClarkXia committed Aug 16, 2023
1 parent 41b5c9c commit 6390162
Show file tree
Hide file tree
Showing 12 changed files with 384 additions and 327 deletions.
56 changes: 56 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
[build]

rustdocflags = []

[target.x86_64-unknown-linux-gnu]
rustflags = [
"-C",
"target-feature=+sse2",
]

[target.x86_64-unknown-linux-musl]
rustflags = [
"-C",
"target-feature=+sse2",
]

[target.x86_64-apple-darwin]
rustflags = [
"-C",
"target-feature=+sse2",
]

[target.x86_64-pc-windows-msvc]
rustflags = [
"-C",
"target-feature=+sse2",
]

[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 = []
Loading

0 comments on commit 6390162

Please sign in to comment.