diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-03-05 13:59:39 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2021-05-07 09:19:47 +0800 |
commit | 582fc5839819cae88df97e14a85bc05a606c747d (patch) | |
tree | 829b0f9366011434be3331280c3b78f49930f74a /.gitlab | |
parent | 65440597fe5dae97374bd0a52003ed5c7a9ac87d (diff) | |
download | haskell-582fc5839819cae88df97e14a85bc05a606c747d.tar.gz |
[ci/nix-shell] [Darwin] Stop the ld warnings about libiconv.
(cherry picked from commit c3944bc89d062a4850946904133c7a1464d59012)
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/shell.nix | 3 |
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"; |