about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-02-28 21:04:28 -0600
committerWill Dietz <w@wdtz.org>2019-02-28 22:31:38 -0600
commit5937a19a061800a39af1b404e9654714f4380fc0 (patch)
tree04a58b3e38aa4ae11cbb1cd907456d8c078ce564 /pkgs/development/libraries/qt-5
parente416d2f8b9ac47ee5c35f5029f7eeca91dbadf35 (diff)
downloadnixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar.gz
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar.bz2
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar.lz
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar.xz
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.tar.zst
nixlib-5937a19a061800a39af1b404e9654714f4380fc0.zip
qtbase: let build use gold linker if it wants, maybe works now
Diffstat (limited to 'pkgs/development/libraries/qt-5')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtbase.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix
index f5f5c69455f5..92ac8a242013 100644
--- a/pkgs/development/libraries/qt-5/modules/qtbase.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix
@@ -301,7 +301,6 @@ stdenv.mkDerivation {
       then
         [
           "-platform macx-clang"
-          "-no-use-gold-linker"
           "-no-fontconfig"
           "-qt-freetype"
           "-qt-libpng"
@@ -329,9 +328,6 @@ stdenv.mkDerivation {
           "-glib"
           "-system-libjpeg"
           "-system-libpng"
-          # gold linker of binutils 2.28 generates duplicate symbols
-          # TODO: remove for newer version of binutils
-          "-no-use-gold-linker"
         ]
         ++ lib.optional withGtk3 "-gtk"
         ++ lib.optional (compareVersion "5.9.0" >= 0) "-inotify"