From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 7A5B1400DF for ; Tue, 18 Jan 2022 22:06:50 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 415F368B12A; Wed, 19 Jan 2022 00:06:47 +0200 (EET) Received: from mail-wm1-f52.google.com (mail-wm1-f52.google.com [209.85.128.52]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id CFB0968AFE2 for ; Wed, 19 Jan 2022 00:06:40 +0200 (EET) Received: by mail-wm1-f52.google.com with SMTP id e9-20020a05600c4e4900b0034d23cae3f0so1464015wmq.2 for ; Tue, 18 Jan 2022 14:06:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=I2NiY9kY24B06eKio9mt997dUceYFtzQQv+MtFobEI4=; b=RhIDjteuKtI2cTxHynb0lqrj5vm9ncuxW3CB10gQk+PL324xdP/f7fIoeFy2PxGUpr uCn145+Gay1wlYWLjNKapFbE0BGDEWDznBVgtT5qJAflAB+jD7/VMYFgAWgmmYYzDSUs I9fN1KJiKPYGNGjTJz0vzZVbIyL10KnAWLXsMLsQL/hsivgBxsF3VUSzUFl50Eox5WCn 0QkZtpNISsDReJnzXQatlwdTGRqud35lf8/mkczx4684iZnE1bsc5ViHKOH7PdIXNqbB PD/hohjg1V569fZjCkkzK0coNktzYhrlN7XieN8QGKtdDCkXBdM1qZcFj0Y6a71iBrbQ m9Lg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=I2NiY9kY24B06eKio9mt997dUceYFtzQQv+MtFobEI4=; b=sw34yNwL5F2TUozpOh0ueB7bzObizk8IXaRToIYJ92kClwGSWWm2i0XJXVv/5Gp0bQ EIQxtJw979vYxdIbuTN3TmC7KKRLVwzltjmxq2M1ss9ThR17zTI/Tc1WNNuCbrVhQD39 GuS0Ysvfe8CRjHMQZ5tcTlWfk2iC4JKgwQqgaaof/RvJ89onSruQZ8nqzVdFZyF/8U7C fs5whSq3WtyUL8sKvwkve08up/F/eghQLZXUh+oFUKa5DhEmOzBEbXipkV/OSc7qyMu1 smgRs+e8Q8AMXmkwIc13arm6Mlzw9ZDM7rv3uc4qTlkJXqhXLeS066raXyj3Ze/156HB P+zw== X-Gm-Message-State: AOAM532DGy9Ta2ouiUJJxu8I1AbF3D+FolNAB6Hu1c5Enli9S88VWfGW OKeCEN0+G6m5LlThuCThUFYb6GjAYJI= X-Google-Smtp-Source: ABdhPJxwtqGf46OP4vI3ELbhB+/aMQw7KHksrm8MVT6YKgUHnegdjxLjhpuF8IXKXXtF670KbMtksg== X-Received: by 2002:adf:e48c:: with SMTP id i12mr777033wrm.43.1642543600010; Tue, 18 Jan 2022 14:06:40 -0800 (PST) Received: from nereus.lab.linutronix.de. (b2b-109-90-143-203.unitymedia.biz. [109.90.143.203]) by smtp.gmail.com with ESMTPSA id p9sm4220678wmb.32.2022.01.18.14.06.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 18 Jan 2022 14:06:39 -0800 (PST) From: Alexander Kanavin X-Google-Original-From: Alexander Kanavin To: ffmpeg-devel@ffmpeg.org Date: Tue, 18 Jan 2022 23:06:29 +0100 Message-Id: <20220118220629.2108825-1-alex@linutronix.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] libavutil: include assembly with full path from source root X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Alexander Kanavin Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: From: Alexander Kanavin Otherwise nasm writes the full host-specific paths into .o output, which breaks binary reproducibility. Signed-off-by: Alexander Kanavin --- libavutil/x86/cpuid.asm | 2 +- libavutil/x86/emms.asm | 2 +- libavutil/x86/fixed_dsp.asm | 2 +- libavutil/x86/float_dsp.asm | 2 +- libavutil/x86/lls.asm | 2 +- libavutil/x86/pixelutils.asm | 2 +- libavutil/x86/tx_float.asm | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavutil/x86/cpuid.asm b/libavutil/x86/cpuid.asm index c3f7866ec7..766f77fcdf 100644 --- a/libavutil/x86/cpuid.asm +++ b/libavutil/x86/cpuid.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 diff --git a/libavutil/x86/emms.asm b/libavutil/x86/emms.asm index 8611762d73..df84f2221b 100644 --- a/libavutil/x86/emms.asm +++ b/libavutil/x86/emms.asm @@ -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 diff --git a/libavutil/x86/fixed_dsp.asm b/libavutil/x86/fixed_dsp.asm index 979dd5c334..2f411850f4 100644 --- a/libavutil/x86/fixed_dsp.asm +++ b/libavutil/x86/fixed_dsp.asm @@ -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 diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index 517fd63638..b773e61a64 100644 --- a/libavutil/x86/float_dsp.asm +++ b/libavutil/x86/float_dsp.asm @@ -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 diff --git a/libavutil/x86/lls.asm b/libavutil/x86/lls.asm index 317fba6fca..d2526d1ff4 100644 --- a/libavutil/x86/lls.asm +++ b/libavutil/x86/lls.asm @@ -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 diff --git a/libavutil/x86/pixelutils.asm b/libavutil/x86/pixelutils.asm index 36c57c5f7f..8b45ead78b 100644 --- a/libavutil/x86/pixelutils.asm +++ b/libavutil/x86/pixelutils.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 diff --git a/libavutil/x86/tx_float.asm b/libavutil/x86/tx_float.asm index 4d2283fae1..ea39f2172a 100644 --- a/libavutil/x86/tx_float.asm +++ b/libavutil/x86/tx_float.asm @@ -29,7 +29,7 @@ ; replace some shuffles with vblends? ; avx512 split-radix -%include "x86util.asm" +%include "libavutil/x86/x86util.asm" %if ARCH_X86_64 %define ptr resq -- 2.20.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".