]> git.pld-linux.org Git - packages/vmaf.git/blob - vmaf-x32.patch
- added x32 patch (fix asm build with x32 ABI)
[packages/vmaf.git] / vmaf-x32.patch
1 --- vmaf-2.1.0/libvmaf/src/meson.build.orig     2020-12-30 18:59:40.000000000 +0100
2 +++ vmaf-2.1.0/libvmaf/src/meson.build  2021-01-17 07:46:41.998356401 +0100
3 @@ -76,7 +76,11 @@
4              nasm_format = 'elf'
5          endif
6          if host_machine.cpu_family() == 'x86_64'
7 -            nasm_format += '64'
8 +           if cc.get_define('__ILP32__') == '1'
9 +                nasm_format += 'x32'
10 +           else
11 +               nasm_format += '64'
12 +            endif
13          else
14              nasm_format += '32'
15          endif
This page took 0.083646 seconds and 3 git commands to generate.