mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-11 16:46:14 +08:00
* ldsym.c (write_file_locals): Write BSF_CONSTRUCTOR
symbols, unless stripping.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Tue Jun 1 14:56:10 1993 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* ldsym.c (write_file_locals): Write BSF_CONSTRUCTOR
|
||||||
|
symbols, unless stripping.
|
||||||
|
|
||||||
Tue May 25 15:34:25 1993 Ian Lance Taylor (ian@cygnus.com)
|
Tue May 25 15:34:25 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* Makefile.in: configure looks for ####, so remove lines with many
|
* Makefile.in: configure looks for ####, so remove lines with many
|
||||||
|
@ -528,9 +528,12 @@ write_file_locals (output_buffer)
|
|||||||
*output_buffer++ = p;
|
*output_buffer++ = p;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (p->flags & BSF_CTOR)
|
else if (p->flags & BSF_CONSTRUCTOR)
|
||||||
{
|
{
|
||||||
/* Throw it away */
|
if (strip_symbols != STRIP_ALL)
|
||||||
|
{
|
||||||
|
*output_buffer++ = p;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user