diff --git a/.cargo/config.toml b/.cargo/config.toml index ee2e20ca..cc393889 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,9 +1,11 @@ -[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'] -rustflags = [ - "-C", - "link-arg=-fuse-ld=lld", - # LLD by default uses xxhash for build ids now, which breaks tests that assume - # GUIDS or longer - "-C", - "link-arg=-Wl,--build-id=sha1", -] +# If you have a global config to use LLD on your machine, you might need to enable +# this config to produce binaries that pass tests +# [target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'] +# rustflags = [ +# "-C", +# "link-arg=-fuse-ld=lld", +# # LLD by default uses xxhash for build ids now, which breaks tests that assume +# # GUIDS or longer +# "-C", +# "link-arg=-Wl,--build-id=sha1", +# ]