diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-11 23:26:57 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-11 23:26:57 +0100 |
| commit | c8e8dc12917c95a190e538db96ec72f2754f4690 (patch) | |
| tree | 4cee633a961457ec23f464f2170fdd06d42dad65 | |
| parent | f7f4335199beaad56d9c962ac84e92a3f78907a6 (diff) | |
Missing comma
| -rw-r--r-- | .cargo/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 1b7c486..8a25f4f 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,7 +1,7 @@ [target.x86_64-unknown-linux-gnu] linker = "clang" rustflags = [ - "-C", "link-arg=-fuse-ld=lld" + "-C", "link-arg=-fuse-ld=lld", "-C", "link-arg=--target=x86_64-unknown-linux-gnu" ] |