From 5c1dad82b179126af34836d1ec75de9da0de1394 Mon Sep 17 00:00:00 2001 From: johan12345 Date: Fri, 7 Nov 2025 20:22:58 +0100 Subject: [PATCH] add x64 versions of libc++_shared.so to fortify exceptions --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c1869a6f..00994cf8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -75,8 +75,10 @@ jobs: run: | checksec --output=json --dir=lib > checksec_output.json jq --argjson exceptions '[ + "lib/arm64-v8a/libc++_shared.so", "lib/armeabi-v7a/libc++_shared.so", - "lib/x86/libc++_shared.so" + "lib/x86/libc++_shared.so", + "lib/x86_64/libc++_shared.so" ]' ' to_entries | map(select(.value.fortify_source == "no" and (.key as $lib | $exceptions | index($lib) | not)))