Commit 91326dc9 authored by Alexander Kanavin's avatar Alexander Kanavin Committed by Anton Khirnov

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: 's avatarAlexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 67e1013a
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION .text SECTION .text
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION .text SECTION .text
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION .text SECTION .text
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION_RODATA 32 SECTION_RODATA 32
pd_reverse: dd 7, 6, 5, 4, 3, 2, 1, 0 pd_reverse: dd 7, 6, 5, 4, 3, 2, 1, 0
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION .text SECTION .text
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;****************************************************************************** ;******************************************************************************
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
SECTION .text SECTION .text
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
; replace some shuffles with vblends? ; replace some shuffles with vblends?
; avx512 split-radix ; avx512 split-radix
%include "x86util.asm" %include "libavutil/x86/x86util.asm"
%define private_prefix ff_tx %define private_prefix ff_tx
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment