Skip to content

Commit 260b14c

Browse files
committed
cargo update + x64
1 parent 5aa7219 commit 260b14c

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.cargo/config.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
[build]
44
target-dir = "_build"
55

6-
# 2025... we can rely on CPUs to be using SSE2... not that it will likely change much in codegen...
7-
rustflags = ["-Ctarget-feature=+sse2"]
6+
# FUCK YOU TO PEOPLE WITH OLD CPUS
7+
rustflags = ["-Ctarget-cpu=x86-64-v2"]
88

9-
target = "i686-pc-windows-msvc"
9+
target = "x86_64-pc-windows-msvc"
1010

1111
[env]
12-
CFLAGS_i686_pc_windows_msvc = "/Zi /FS"
13-
CXXFLAGS_i686_pc_windows_msvc = "/Zi /FS"
12+
CFLAGS_x86_64_pc_windows_msvc = "/Zi /FS"
13+
CXXFLAGS_x86_64_pc_windows_msvc = "/Zi /FS"
1414

1515
SRCWRTIMER_ROOT_DIR = { value = "../srcwrtimer", relative = true }
1616

17-
[target.i686-pc-windows-msvc]
17+
[target.x86_64-pc-windows-msvc]
1818
rustflags = [
19-
# 2025... we can rely on CPUs to be using SSE2... not that it will likely change much in codegen...
20-
"-Ctarget-feature=+sse2",
19+
# FUCK YOU TO PEOPLE WITH OLD CPUS
20+
"-Ctarget-cpu=x86-64-v2",
2121
# TODO: Do we want static crt on Windows? I can't remember if there was a reason for this...
2222
"-Ctarget-feature=+crt-static",
2323
# Yeah, we want frame pointers...

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)