From 980ec069b764d0f748e9805dcdd1715ba3ada6fa Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Mon, 19 Feb 2024 14:58:53 -0800 Subject: [PATCH] HACKs print linker info I think we're running an old buggy linker in GitHub Actions. Let's print the linker info to help debug this. --- cpython-unix/targets.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpython-unix/targets.yml b/cpython-unix/targets.yml index fd81e286..8061d1af 100644 --- a/cpython-unix/targets.yml +++ b/cpython-unix/targets.yml @@ -85,6 +85,7 @@ aarch64-apple-darwin: - '-Wno-undef-prefix' - '-fvisibility=hidden' target_ldflags: + - '-v' - '-arch' - 'arm64' - '-mmacosx-version-min=11.0' @@ -569,6 +570,7 @@ x86_64-apple-darwin: - '-Wno-undef-prefix' - '-fvisibility=hidden' target_ldflags: + - '-v' - '-arch' - 'x86_64' - '-mmacosx-version-min=10.9'