hardcfr: libgcc sym versioning

Message ID or1qc71xqw.fsf@lxoliva.fsfla.org
State Committed
Commit c4a49ebd1e584b9e2e39c9fa53cce30c8f0b0b5b
Headers
Series hardcfr: libgcc sym versioning |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gcc_build--master-arm success Testing passed
linaro-tcwg-bot/tcwg_gcc_build--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_gcc_check--master-arm success Testing passed
linaro-tcwg-bot/tcwg_gcc_check--master-aarch64 success Testing passed

Commit Message

Alexandre Oliva Nov. 30, 2023, 7:55 a.m. UTC
  The libgcc-exported runtime component of control flow redundancy
hardening was missing symbol versioning information.  Add it.

Regstrapped on x86_64-linux-gnu.  Ok to install?


for  libgcc/ChangeLog

	* libgcc-std.ver.in (__hardcfr_check): Add to GCC_14.0.0.
---
 libgcc/libgcc-std.ver.in |    1 +
 1 file changed, 1 insertion(+)
  

Comments

Richard Biener Nov. 30, 2023, noon UTC | #1
On Thu, Nov 30, 2023 at 8:55 AM Alexandre Oliva <oliva@adacore.com> wrote:
>
>
> The libgcc-exported runtime component of control flow redundancy
> hardening was missing symbol versioning information.  Add it.
>
> Regstrapped on x86_64-linux-gnu.  Ok to install?

OK.

>
> for  libgcc/ChangeLog
>
>         * libgcc-std.ver.in (__hardcfr_check): Add to GCC_14.0.0.
> ---
>  libgcc/libgcc-std.ver.in |    1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/libgcc/libgcc-std.ver.in b/libgcc/libgcc-std.ver.in
> index f092752136aff..de00db647570c 100644
> --- a/libgcc/libgcc-std.ver.in
> +++ b/libgcc/libgcc-std.ver.in
> @@ -1956,4 +1956,5 @@ GCC_14.0.0 {
>    __PFX__fixdfbitint
>    __PFX__floatbitintsf
>    __PFX__floatbitintdf
> +  __PFX__hardcfr_check
>  }
>
>
> --
> Alexandre Oliva, happy hacker            https://FSFLA.org/blogs/lxo/
>    Free Software Activist                   GNU Toolchain Engineer
> More tolerance and less prejudice are key for inclusion and diversity
> Excluding neuro-others for not behaving ""normal"" is *not* inclusive
  

Patch

diff --git a/libgcc/libgcc-std.ver.in b/libgcc/libgcc-std.ver.in
index f092752136aff..de00db647570c 100644
--- a/libgcc/libgcc-std.ver.in
+++ b/libgcc/libgcc-std.ver.in
@@ -1956,4 +1956,5 @@  GCC_14.0.0 {
   __PFX__fixdfbitint
   __PFX__floatbitintsf
   __PFX__floatbitintdf
+  __PFX__hardcfr_check
 }