diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-06-22 19:38:17 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-06-23 22:52:45 +0900 |
commit | 2f7c0f656ea42f9ad2ca3c1fbfabcff98ce59ee3 (patch) | |
tree | 7d5691578c98b4d6a1d22922a7f008f3008b8454 /.github/workflows | |
parent | 6f229da2c07aec3441078248d7fd2fe844e8bc92 (diff) | |
download | ruby-2f7c0f656ea42f9ad2ca3c1fbfabcff98ce59ee3.tar.gz |
Pass LDFLAGS via environment variable
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/compilers.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 30299e29e6..d2062be420 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -83,7 +83,7 @@ jobs: env: # Minimal flags to pass the check. default_cc: 'gcc-11 -O2 -fcf-protection -Wa,--generate-missing-build-notes=yes' - append_configure: 'LDFLAGS=-Wl,-z,now' + LDFLAGS: '-Wl,-z,now' # FIXME: Drop skipping options # https://bugs.ruby-lang.org/issues/18061 # https://sourceware.org/annobin/annobin.html/Test-pie.html |