summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Angermann <moritz.angermann@gmail.com>2021-03-05 13:59:39 +0800
committerMoritz Angermann <moritz.angermann@gmail.com>2021-05-07 09:19:47 +0800
commit582fc5839819cae88df97e14a85bc05a606c747d (patch)
tree829b0f9366011434be3331280c3b78f49930f74a
parent65440597fe5dae97374bd0a52003ed5c7a9ac87d (diff)
downloadhaskell-582fc5839819cae88df97e14a85bc05a606c747d.tar.gz
[ci/nix-shell] [Darwin] Stop the ld warnings about libiconv.
(cherry picked from commit c3944bc89d062a4850946904133c7a1464d59012)
-rw-r--r--.gitlab/shell.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab/shell.nix b/.gitlab/shell.nix
index 8b8353a769..eb79921fce 100644
--- a/.gitlab/shell.nix
+++ b/.gitlab/shell.nix
@@ -7,6 +7,9 @@
# we can't really, as NIX_BUILD_TOP/env-vars is not set.
noDumpEnvVars=1;
+ # stop polluting LDFLAGS with -liconv
+ dontAddExtraLibs = true;
+
# we need to inject ncurses into --with-curses-libraries.
# the real fix is to teach terminfo to use libcurses on macOS.
CONFIGURE_ARGS = "--with-intree-gmp --with-curses-libraries=${pkgs.ncurses.out}/lib";