diff options
| author | Fuwn <[email protected]> | 2021-05-17 14:35:00 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-17 14:35:00 -0700 |
| commit | dded96f2242b1853623c53205dbdf7a0941462ee (patch) | |
| tree | 33d311eadfe35dff27d0298f8c83400c5b9bcba4 | |
| parent | perf(global): custom allocator and adjust codegen-units (diff) | |
| download | whirl-dded96f2242b1853623c53205dbdf7a0941462ee.tar.xz whirl-dded96f2242b1853623c53205dbdf7a0941462ee.zip | |
fix: compile failing on unix
| -rw-r--r-- | .cargo/config.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 03f4879..856d60d 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,4 @@ -[build] -rustflags = ["-Ctarget-cpu=native"] +# This does make the final binary a *little bit* fast but it also fails to +# compile on some machines, it's up to you how you handle this. +#[build] +#rustflags = ["-Ctarget-cpu=native"] |