[前][次][番号順一覧][スレッド一覧]

ruby-changes:72262

From: Jun <ko1@a...>
Date: Tue, 21 Jun 2022 06:57:39 +0900 (JST)
Subject: [ruby-changes:72262] eed24b5ee0 (master): .github/workflows/compilers.yml: annocheck: Fix gaps and notes test.

https://git.ruby-lang.org/ruby.git/commit/?id=eed24b5ee0

From eed24b5ee002449a9fe83e221336142416e0b315 Mon Sep 17 00:00:00 2001
From: Jun Aruga <jaruga@r...>
Date: Mon, 20 Jun 2022 15:34:32 +0200
Subject: .github/workflows/compilers.yml: annocheck: Fix gaps and notes test.

This commit fixes on the annocheck gaps and notes tests on Ubuntu focal on CI.
Added the gcc `-Wa,--generate-missing-build-notes=yes` flag.

See the links below.
* -Wa,option: <https://gcc.gnu.org/onlinedocs/gcc-11.3.0/gcc/Assembler-Options.html#Assembler-Options>.
* --generate-missing-build-notes=yes: <https://www.man7.org/linux/man-pages/man1/as.1.html>.
---
 .github/workflows/compilers.yml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index d30d9f70db..fd5f1e801e 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -80,16 +80,14 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/compilers.yml#L80
           - key: default_cc
             name: 'gcc-11 annocheck'
             # Minimal flags to pass the check.
-            value: 'gcc-11 -O2 -fcf-protection'
+            value: 'gcc-11 -O2 -fcf-protection -Wa,--generate-missing-build-notes=yes'
             container: gcc-11
             env:
               append_configure: 'LDFLAGS=-Wl,-z,now'
               # FIXME: Drop skipping options
               # https://bugs.ruby-lang.org/issues/18061
               # https://sourceware.org/annobin/annobin.html/Test-pie.html
-              # https://sourceware.org/annobin/annobin.html/Test-notes.html
-              # https://sourceware.org/annobin/annobin.html/Test-gaps.html
-              TEST_ANNOCHECK_OPTS: "--skip-pie --skip-notes --skip-gaps"
+              TEST_ANNOCHECK_OPTS: "--skip-pie"
             check: true
           - { key: default_cc, name: clang-15,  value: clang-15,  container: clang-15 }
           - { key: default_cc, name: clang-14,  value: clang-14,  container: clang-14 }
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]