[committed] Fix build of libgcc on ports using FDPIC

Message ID 66ce7b3d-607f-48b5-b3f7-562f4ec5a535@gmail.com
State Committed
Commit 4cef6daf40f4aefd748245a720955d4e52d1a81e
Headers
Series [committed] Fix build of libgcc on ports using FDPIC |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gcc_build--master-arm warning Patch is already merged
linaro-tcwg-bot/tcwg_gcc_build--master-aarch64 warning Patch is already merged

Commit Message

Jeff Law Dec. 3, 2023, 5:47 a.m. UTC
  read_encoded_value_with_base has an ifdef'd code path conditional on 
__FDPIC__ which was calling _Unwind_gnu_Find_got without a prototype. 
This naturally caused various build failures.

This adds a suitable prototype.

Pushed to the trunk.
commit 4cef6daf40f4aefd748245a720955d4e52d1a81e
Author: Jeff Law <jlaw@ventanamicro.com>
Date:   Sat Dec 2 22:45:48 2023 -0700

    [committed] Fix build of libgcc on ports using FDPIC
    
    read_encoded_value_with_base has an ifdef'd code path conditional on __FDPIC__
    which was calling _Unwind_gnu_Find_got without a prototype.  This naturally
    caused various build failures.
    
    This adds a suitable prototype.
    
    Pushed to the trunk.
    
    libgcc
    
            * unwind-pe.h (_Unwind_gnu_Find_got): Add prototype.
  

Patch

diff --git a/libgcc/unwind-pe.h b/libgcc/unwind-pe.h
index 3f98c93589a..d714a27a935 100644
--- a/libgcc/unwind-pe.h
+++ b/libgcc/unwind-pe.h
@@ -173,6 +173,8 @@  read_sleb128 (const unsigned char *p, _sleb128_t *val)
   return p;
 }
 
+extern _Unwind_Ptr _Unwind_gnu_Find_got (_Unwind_Ptr);
+
 /* Load an encoded value from memory at P.  The value is returned in VAL;
    The function returns P incremented past the value.  BASE is as given
    by base_of_encoded_value for this encoding in the appropriate context.  */