Skip to content

Commit a445bc9

Browse files
committed
faster compile times on linux and removed cargo.lock
1 parent 806cfac commit a445bc9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ rustflags = [
7474
# - Ubuntu: `sudo apt-get install lld clang`
7575
# - Fedora: `sudo dnf install lld clang`
7676
# - Arch: `sudo pacman -S lld clang`
77-
"-Clink-arg=-fuse-ld=lld",
77+
# "-Clink-arg=-fuse-ld=lld",
7878

7979
# Mold linker
8080
#
@@ -83,11 +83,11 @@ rustflags = [
8383
# - Ubuntu: `sudo apt-get install mold clang`
8484
# - Fedora: `sudo dnf install mold clang`
8585
# - Arch: `sudo pacman -S mold clang`
86-
# "-Clink-arg=-fuse-ld=/usr/bin/mold",
86+
"-Clink-arg=-fuse-ld=/usr/bin/mold",
8787

8888
# Nightly
89-
# "-Zshare-generics=y",
90-
# "-Zthreads=0",
89+
"-Zshare-generics=y",
90+
"-Zthreads=0",
9191
]
9292

9393
[target.x86_64-apple-darwin]

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Rust builds
22
/target
3-
# This file contains environment-specific configuration like linker settings
4-
.cargo/config.toml
3+
# unnecessary and causes merge conflicts
4+
Cargo.lock

0 commit comments

Comments
 (0)