From f52b982cc9504bf89b035d4b55ac038a61226210 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 26 Jun 2017 09:00:46 -0400 Subject: [PATCH] meson: stop setting the linker (#6182) If wanted, the linker can be set with LDFLAGS (LDFLAGS=-Wl,-fuse-ld=gold meson ...), and setting it internally was interfering with that. It seems that both gold and bfd work very well and quick, and the reasons we had to prefer gold are not relevant anymore. Fixes #6169. --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index be33ea1..af68a2f 100644 --- a/meson.build +++ b/meson.build @@ -312,7 +312,6 @@ link_test_c = files('tools/meson-link-test.c') foreach arg : ['-Wl,-z,relro', '-Wl,-z,now', '-pie', - '-Wl,-fuse-ld=gold', ] have = run_command(check_compilation_sh, -- 2.7.4