Merge pull request #127502 from Mindavi/a52dec/cross

a52dec: support cross-compilation

authored by

Sandro and committed by
GitHub
d7ac89ea 6567f8e5

+4
+4
pkgs/development/libraries/a52dec/default.nix
··· 13 "--enable-shared" 14 ]; 15 16 # fails 1 out of 1 tests with "BAD GLOBAL SYMBOLS" on i686 17 # which can also be fixed with 18 # hardeningDisable = lib.optional stdenv.isi686 "pic";
··· 13 "--enable-shared" 14 ]; 15 16 + makeFlags = [ 17 + "AR=${stdenv.cc.targetPrefix}ar" 18 + ]; 19 + 20 # fails 1 out of 1 tests with "BAD GLOBAL SYMBOLS" on i686 21 # which can also be fixed with 22 # hardeningDisable = lib.optional stdenv.isi686 "pic";