From unknown Sun Jun 22 17:11:02 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#41750 <41750@debbugs.gnu.org> To: bug#41750 <41750@debbugs.gnu.org> Subject: Status: [PATCH] gnu: x265: Build with assembly files. Reply-To: bug#41750 <41750@debbugs.gnu.org> Date: Mon, 23 Jun 2025 00:11:02 +0000 retitle 41750 [PATCH] gnu: x265: Build with assembly files. reassign 41750 guix-patches submitter 41750 Michael Rohleder severity 41750 normal tag 41750 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 07 12:17:19 2020 Received: (at submit) by debbugs.gnu.org; 7 Jun 2020 16:17:20 +0000 Received: from localhost ([127.0.0.1]:54769 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jhxz5-0002A5-Lz for submit@debbugs.gnu.org; Sun, 07 Jun 2020 12:17:19 -0400 Received: from lists.gnu.org ([209.51.188.17]:52736) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jhxz4-00029w-5h for submit@debbugs.gnu.org; Sun, 07 Jun 2020 12:17:18 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42746) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jhxz3-0001oD-WE for guix-patches@gnu.org; Sun, 07 Jun 2020 12:17:18 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:44214) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jhxz2-0000wd-ED for guix-patches@gnu.org; Sun, 07 Jun 2020 12:17:17 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1jhxyy-00007W-EY; Sun, 07 Jun 2020 18:17:12 +0200 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1jhxyw-0005do-Vr for guix-patches@gnu.org; Sun, 07 Jun 2020 18:17:11 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: x265: Build with assembly files. X-PGP-Fingerprint: 755E 2DE5 D0D5 85C5 2E78 2830 7C7A FFBE FEF2 CB25 X-PGP-Key: https://www.rohleder.de/~mike/pgpkey.asc Date: Sun, 07 Jun 2020 18:17:00 +0200 Message-ID: <87sgf6hmv7.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1591546636;b8e13a5c; X-HE-SMSGID: 1jhxyy-00007W-EY Received-SPF: permerror client-ip=2a01:488:42:1000:50ed:84e7::; envelope-from=mike@rohleder.de; helo=wp224.webpack.hosteurope.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/07 12:17:12 X-ACL-Warn: Detected OS = ??? X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, T_SPF_PERMERROR=0.01, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain simple oneliner that made my ffmpeg encoding with hevc 3-4 times as fast. also tested vlc build and decoding that video. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-x265-Build-with-assembly-files.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: x265: Build with assembly files. From=206fc19fa31df6c48e4118144fa3e0ecf738e45ce3 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 7 Jun 2020 18:01:38 +0200 Subject: [PATCH] gnu: x265: Build with assembly files. * gnu/packages/video.scm (x265): Build with assembly files. =2D-- gnu/packages/video.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8d9d5ecfd1..c822075c57 100644 =2D-- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -625,6 +625,7 @@ available.") (delete-file-recursively "source/compat/getopt") #t)))) (build-system cmake-build-system) + (native-inputs `(("nasm" ,nasm))) (arguments `(#:tests? #f ; tests are skipped if cpu-optimized code isn't built #:configure-flags =2D-=20 2.26.2 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 If you think the system is working, ask someone who's waiting for a prompt. --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl7dEv0ACgkQfHr/vv7y yyWqgAgAl7dwFD74D8+WQ9g0Q5gjcjjxnFUMnT12gWznJlYEN8LCAZwD43cl0DSX S7KjgZTK7g31SlGlpezDX2GgAS6y25biuGEPqr+olQapTVprtZv+MgKH9ecfPV0D KUxQiauKrRs+RMEAE+IEOru0zQW0rwSPO5DnqP8gTvrNjxjmyDvaG0ChjN7BDJO8 WPOz3dBoyjDQOsE4TbqDCADx8YTTAjtbrY9QYcvLd+wqKjh/5tIu2DcRSNbPeYXF xy9VEEQ78iq+D4CXtO1AXAXFjKWwBvyirI/m79GIO+aFn1wGnbFjZmmchDAGe0x+ vUrgITsFI6M4WLMJLF25I+CmDpmoaQ== =wGRo -----END PGP SIGNATURE----- --==-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 08 06:04:07 2020 Received: (at 41750-done) by debbugs.gnu.org; 8 Jun 2020 10:04:07 +0000 Received: from localhost ([127.0.0.1]:55947 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jiEdT-0003Jx-FJ for submit@debbugs.gnu.org; Mon, 08 Jun 2020 06:04:07 -0400 Received: from flashner.co.il ([178.62.234.194]:46842) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jiEdR-0003JT-De for 41750-done@debbugs.gnu.org; Mon, 08 Jun 2020 06:04:05 -0400 Received: from localhost (unknown [188.120.128.90]) by flashner.co.il (Postfix) with ESMTPSA id 548EF40031; Mon, 8 Jun 2020 10:03:59 +0000 (UTC) Date: Mon, 8 Jun 2020 13:03:21 +0300 From: Efraim Flashner To: Michael Rohleder Subject: Re: [bug#41750] [PATCH] gnu: x265: Build with assembly files. Message-ID: <20200608100321.GE24239@E5400> References: <87sgf6hmv7.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="7mxbaLlpDEyR1+x6" Content-Disposition: inline In-Reply-To: <87sgf6hmv7.fsf@rohleder.de> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 41750-done Cc: 41750-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --7mxbaLlpDEyR1+x6 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I thought this wasn't enabled due to it failing on aarch64 or armhf but it turns out that wasn't the case. Patch pushed! Thanks. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --7mxbaLlpDEyR1+x6 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl7eDOkACgkQQarn3Mo9 g1E7Zw//eVb90aZEgf0Sk2SKLGomq24dp6SrRQ3EsnxCMviZRunRDy42u0pE7HYt wShWOuowsgJL/vWLC6QbnwktySnNyrcZHhI/uvkYS9wivG98q/oj61Ct/TGMu9vF 3SYgVUriSZ394EmzstVEfGqfIVWr6N48ALJLos410MS1x7zx/wsnVWDXLXCuMrTu CO8+ZaWC8OVxUuctViXTi3MnmrIZG8rmzb+g5BVGBTZnQ3QfLh8yJXBSara9MQND bTQyO9ivvEEuligR41bPIgP0j6LaMj7h+9+J0aNDae1L1MTdRWdhTW+2xmqj3+sP VuLxXBMw2JQLZSCY4EtlFnnL3DRIYjNEe5ViX17Q9z1hodoEN6TqLmBnAotv/WiF PEfJs/KEqlAJH8IVFhimoGEgrc68oL7FIsUrzz0XNjqUOjv2rxHgRzPRhHcIRkXk geI+E15md/luXXjd2zG+UU5VTZMN5qmLyA93nuHGZhvpahwYRejZtE1Ts/hJOcTd f1nKFuqrS/FvJJzSujbDoph5sLmH7VKbqLfYvhE753glClTlox9Lp8+YONmtYzcd IDLT0V4j6xT+KDb+1zSD+OqXShutDv6HnVUI+hukfNii41TIqin+OLMNuDDgokQr CKlR7KaLVcSqdMh5zHF1KbaZaZtaAqM2oFPeS97KXLmEA29o4/M= =+ZPa -----END PGP SIGNATURE----- --7mxbaLlpDEyR1+x6-- From unknown Sun Jun 22 17:11:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 06 Jul 2020 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator