diff options
author | Aditya Vidyadhar Kamath <Aditya.Kamath1@ibm.com> | 2024-01-26 02:19:52 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-01-31 17:30:25 -0700 |
commit | 49346fa79442ba6f0be832c2c5af4360e52f070a (patch) | |
tree | f35762eeb12117683df413823fcba61da533b6fb /gdb/interps.c | |
parent | 3d4b08fb895826ec5f0f6c36a3be98f955aa74ea (diff) | |
download | gdb-49346fa79442ba6f0be832c2c5af4360e52f070a.zip gdb-49346fa79442ba6f0be832c2c5af4360e52f070a.tar.gz gdb-49346fa79442ba6f0be832c2c5af4360e52f070a.tar.bz2 |
Fix AIX build break.
A recent commit broke AIX build. The thread_local type defined functions
were being considered a weak symbol and hence while creating the binary these
symbols were not visible.
This patch is a fix for the same.
Diffstat (limited to 'gdb/interps.c')
-rw-r--r-- | gdb/interps.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/interps.c b/gdb/interps.c index eddc7f3..391fea1 100644 --- a/gdb/interps.c +++ b/gdb/interps.c @@ -273,7 +273,6 @@ clear_interpreter_hooks (void) deprecated_print_frame_info_listing_hook = 0; /*print_frame_more_info_hook = 0; */ deprecated_query_hook = 0; - deprecated_warning_hook = 0; deprecated_readline_begin_hook = 0; deprecated_readline_hook = 0; deprecated_readline_end_hook = 0; |