Unverified Commit 41aa1dc2 authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

faust2jack: fix strictDeps build, magnetophonDSP.VoiceOfFaust: disable PIE hardening (#370993)

parents dec1b5ca 571db1ae
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
{
  bash,
  faust,
  gtk2,
  jack2,
@@ -17,6 +18,10 @@ faust.wrapWithBuildEnv {
    "faust2jackconsole"
  ];

  buildInputs = [
    bash # required for some scripts
  ];

  propagatedBuildInputs = [
    gtk2
    jack2
+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;