libavutil: include assembly with full path from source root

Otherwise nasm writes the full host-specific paths into .o
output, which breaks binary reproducibility.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
release/5.1
Alexander Kanavin 3 years ago committed by Anton Khirnov
parent 67e1013a96
commit 91326dc942
  1. 2
      libavutil/x86/cpuid.asm
  2. 2
      libavutil/x86/emms.asm
  3. 2
      libavutil/x86/fixed_dsp.asm
  4. 2
      libavutil/x86/float_dsp.asm
  5. 2
      libavutil/x86/lls.asm
  6. 2
      libavutil/x86/pixelutils.asm
  7. 2
      libavutil/x86/tx_float.asm

@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION .text

@ -18,7 +18,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION .text

@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION .text

@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION_RODATA 32
pd_reverse: dd 7, 6, 5, 4, 3, 2, 1, 0

@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION .text

@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
SECTION .text

@ -29,7 +29,7 @@
; replace some shuffles with vblends?
; avx512 split-radix
%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
%define private_prefix ff_tx

Loading…
Cancel
Save