Skip to content

Commit 1f4632f

Browse files
Switch back to GNU linker
No obvious perf improvements on github
1 parent bbee54d commit 1f4632f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.cargo/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[env]
22
CSPICE_DIR = {value = "./cspice/", relative = true}
33

4-
[target.x86_64-unknown-linux-gnu]
4+
# [target.x86_64-unknown-linux-gnu]
55
# For flamegraph -- https://github.com/flamegraph-rs/flamegraph
6-
linker = "/usr/bin/clang"
7-
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
6+
# linker = "/usr/bin/clang"
7+
# rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# If we're running on rhel centos, install needed packages.
4848
if command -v yum &> /dev/null; then
4949
echo "CENTOS"
50-
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic lld-19
50+
yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic
5151
5252
# If we're running on i686 we need to symlink libatomic
5353
# in order to build openssl with -latomic flag.
@@ -57,7 +57,7 @@ jobs:
5757
else
5858
# If we're running on debian-based system.
5959
echo "DEBIAN LIKE"
60-
apt update -y && apt-get install -y libssl-dev openssl pkg-config lld-19
60+
apt update -y && apt-get install -y libssl-dev openssl pkg-config
6161
fi
6262
6363
- name: Upload wheels

0 commit comments

Comments
 (0)