Commit 2abdb7f7 authored by Colin's avatar Colin
Browse files

nix: enable separateDebugInfo (on non-static linux builds)

the `separateDebugInfo` condition in common-meson.nix was switched;
common-autoconf.nix and components.nix are both conditioned on `!static`
parent e1e49992
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -230,7 +230,7 @@ stdenv.mkDerivation (finalAttrs: {
      export MANPATH=$man/share/man:$MANPATH
    '';

  separateDebugInfo = stdenv.hostPlatform.isLinux && enableStatic;
  separateDebugInfo = stdenv.hostPlatform.isLinux && !enableStatic;

  passthru = {
    inherit aws-sdk-cpp boehmgc;