From patchwork Sat Oct 23 16:50:00 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4821 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4Hc6dn6qxJz3wcs for ; Sat, 23 Oct 2021 16:50:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Hc6dn4ms4z183; Sat, 23 Oct 2021 16:50:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Hc6dn3wmJz2yVB; Sat, 23 Oct 2021 16:50:05 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Hc6dm32mYz2xPW for ; Sat, 23 Oct 2021 16:50:04 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4Hc6dm1JFSz14T; Sat, 23 Oct 2021 16:50:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1635007804; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=pFNsJrI1/z2zPnUWevPgAXX2HEUcRbqBzAJJqEUZGsk=; b=c6xCtVCj+UB0Uph7vRzSN6c2SLUPR2szc9we6c7jJ7EQ5NLOn2gNzIhLZPWynUfJrMj559 SpiJdOTDn3I81jDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1635007804; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=pFNsJrI1/z2zPnUWevPgAXX2HEUcRbqBzAJJqEUZGsk=; b=RUE9F5utuJOlUDOJzRyD0h1YcHkGQjJ5upmHvFnXSAcGH4bOkQj5InjEkFfdkSUhu7CJbn yB7C4oWqRkSLd+xWgbOrXYKqgSDh+vvOstsdgxwWwfr2PVSEOI5sM7fI+kmeRz8ysliHf5 H1dNKWN2dw3rleuJLsZfP3JT+AesB5V4j7HcfovnShggt7JKMchrFJ1woyj6bdTnE7EOEP 4Nqi8I/5RbgQcetJGhLov04hJ7ISYwopYETrtCL9QsgiWWTf38dd92OG8fogXm9CmJ5RgY owars9riEDulFHYi3Dektuz1EHJMo94FyKPZe3z1qPOPgx9xLHi+fHu0dSU5sA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] libffi: Update to version 3.4.2 Date: Sat, 23 Oct 2021 18:50:00 +0200 Message-Id: <20211023165000.2776256-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 3.3 to 3.4.2 - Update rootfile - No dependency issues due to so bump - Changelog 3.4.2 Jun-28-21 Add static trampoline support for Linux on x86_64 and ARM64. Add support for Alibaba's CSKY architecture. Add support for Kalray's KVX architecture. Add support for Intel Control-flow Enforcement Technology (CET). Add support for ARM Pointer Authentication (PA). Fix 32-bit PPC regression. Fix MIPS soft-float problem. Enable tmpdir override with the $LIBFFI_TMPDIR environment variable. Enable compatibility with MSVC runtime stack checking. Reject float and small integer argument in ffi_prep_cif_var(). Callers must promote these types themselves. 3.3 Nov-23-19 Add RISC-V support. New API in support of GO closures. Add IEEE754 binary128 long double support for 64-bit Power Default to Microsoft's 64-bit long double ABI with Visual C++. GNU compiler uses 80 bits (128 in memory) FFI_GNUW64 ABI. Add Windows on ARM64 (WOA) support. Add Windows 32-bit ARM support. Raw java (gcj) API deprecated. Add pre-built PDF documentation to source distribution. Many new test cases and bug fixes. Signed-off-by: Adolf Belka --- config/rootfiles/common/libffi | 4 ++-- lfs/libffi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/common/libffi b/config/rootfiles/common/libffi index e71caf1a2..7b5ed1248 100644 --- a/config/rootfiles/common/libffi +++ b/config/rootfiles/common/libffi @@ -3,8 +3,8 @@ #usr/lib/libffi.a #usr/lib/libffi.la #usr/lib/libffi.so -usr/lib/libffi.so.7 -usr/lib/libffi.so.7.1.0 +usr/lib/libffi.so.8 +usr/lib/libffi.so.8.1.0 #usr/lib/pkgconfig/libffi.pc #usr/share/info/libffi.info #usr/share/man/man3/ffi.3 diff --git a/lfs/libffi b/lfs/libffi index 1678505b6..8574ca067 100644 --- a/lfs/libffi +++ b/lfs/libffi @@ -24,7 +24,7 @@ include Config -VER = 3.3 +VER = 3.4.2 THISAPP = libffi-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 6313289e32f1d38a9df4770b014a2ca7 +$(DL_FILE)_MD5 = 294b921e6cf9ab0fbaea4b639f8fdbe8 install : $(TARGET)