Skip to content

Commit 09fcc74

Browse files
authored
feat: update swc_core (#14)
1 parent 1ae3423 commit 09fcc74

File tree

12 files changed

+384
-327
lines changed

12 files changed

+384
-327
lines changed

.cargo/config.toml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
[build]
2+
3+
rustdocflags = []
4+
5+
[target.x86_64-unknown-linux-gnu]
6+
rustflags = [
7+
"-C",
8+
"target-feature=+sse2",
9+
]
10+
11+
[target.x86_64-unknown-linux-musl]
12+
rustflags = [
13+
"-C",
14+
"target-feature=+sse2",
15+
]
16+
17+
[target.x86_64-apple-darwin]
18+
rustflags = [
19+
"-C",
20+
"target-feature=+sse2",
21+
]
22+
23+
[target.x86_64-pc-windows-msvc]
24+
rustflags = [
25+
"-C",
26+
"target-feature=+sse2",
27+
]
28+
29+
[target.aarch64-apple-darwin]
30+
rustflags = []
31+
32+
[target.aarch64-unknown-linux-gnu]
33+
linker = "aarch64-linux-gnu-gcc"
34+
rustflags = []
35+
36+
[target.aarch64-unknown-linux-musl]
37+
linker = "aarch64-linux-gnu-gcc"
38+
rustflags = [
39+
"-C",
40+
"target-feature=-crt-static",
41+
"-C",
42+
"link-arg=-lgcc",
43+
]
44+
45+
[target.armv7-unknown-linux-gnueabihf]
46+
linker = "arm-linux-gnueabihf-gcc"
47+
rustflags = []
48+
49+
[target.aarch64-linux-android]
50+
rustflags = []
51+
52+
[target.aarch64-pc-windows-msvc]
53+
rustflags = []
54+
55+
[target.wasm32-unknown-unknown]
56+
rustflags = []

0 commit comments

Comments
 (0)