Commit 571db1ae authored by FliegendeWurst's avatar FliegendeWurst
Browse files

magnetophonDSP.VoiceOfFaust: fix strictDeps build, disable PIE

parent 89c19152
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -27,11 +27,15 @@ stdenv.mkDerivation rec {

  pitchTracker = puredata-with-plugins plugins;

  buildInputs = [
  nativeBuildInputs = [
    faust2jack
    faust2lv2
  ];

  # ld: crtbegin.o: relocation R_X86_64_32 against hidden symbol `__TMC_END__' can not be used when making a PIE object
  # ld: failed to set dynamic section sizes: bad value
  hardeningDisable = [ "pie" ];

  enableParallelBuilding = true;

  dontWrapQtApps = true;