mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-04 08:08:01 +00:00
* python/python-value.c (values_in_python): Add specific initialization
to NULL to work-around a MacOS linker bug.
This commit is contained in:
parent
39d6157133
commit
4be15b7a08
@ -1,3 +1,8 @@
|
|||||||
|
2008-12-08 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* python/python-value.c (values_in_python): Add specific initialization
|
||||||
|
to NULL to work-around a MacOS linker bug.
|
||||||
|
|
||||||
2008-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2008-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
Fix loc_type of `bp_location's created by update_watchpoint.
|
Fix loc_type of `bp_location's created by update_watchpoint.
|
||||||
|
@ -30,7 +30,9 @@
|
|||||||
can copy the values' types if needed. This is declared
|
can copy the values' types if needed. This is declared
|
||||||
unconditionally to reduce the number of uses of HAVE_PYTHON in the
|
unconditionally to reduce the number of uses of HAVE_PYTHON in the
|
||||||
generic code. */
|
generic code. */
|
||||||
struct value *values_in_python;
|
/* This variable is unnecessarily initialized to NULL in order to
|
||||||
|
work around a linker bug on MacOS. */
|
||||||
|
struct value *values_in_python = NULL;
|
||||||
|
|
||||||
#ifdef HAVE_PYTHON
|
#ifdef HAVE_PYTHON
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user