mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:32:56 +08:00
* Makefile.in: Add rule for xcoffexec.o like that for paread.o.
* xcoffread.c (process_xcoff_symbol, case C_LSYM): Use define_symbol.
This commit is contained in:
@ -599,7 +599,6 @@ depend: $(SOURCES) Makefile.in
|
|||||||
-e 'g' \
|
-e 'g' \
|
||||||
-e '/:.*\.tab\.c/d' \
|
-e '/:.*\.tab\.c/d' \
|
||||||
-e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
|
-e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
|
||||||
-e 's;$${srcdir}/xcoffexec.c;-I$${BFD_DIR} &;' \
|
|
||||||
-e 's;$${srcdir}/xcoffread.c;-I$${BFD_DIR} &;' \
|
-e 's;$${srcdir}/xcoffread.c;-I$${BFD_DIR} &;' \
|
||||||
-e 's;$${srcdir}/stabsread.c;-I$${BFD_DIR} &;' \
|
-e 's;$${srcdir}/stabsread.c;-I$${BFD_DIR} &;' \
|
||||||
-e 's;$${srcdir}/dwarfread.c;-I$${BFD_DIR} &;' \
|
-e 's;$${srcdir}/dwarfread.c;-I$${BFD_DIR} &;' \
|
||||||
@ -871,6 +870,11 @@ m2-exp.tab.c: $(srcdir)/m2-exp.y $(srcdir)/Makefile.in
|
|||||||
# output of dependency information. For now, just punt. (FIXME)
|
# output of dependency information. For now, just punt. (FIXME)
|
||||||
paread.o: ${srcdir}/paread.c
|
paread.o: ${srcdir}/paread.c
|
||||||
${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/paread.c
|
${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/paread.c
|
||||||
|
# Used on RS6000 native.
|
||||||
|
# This rule fails to get automatically generated in depend if
|
||||||
|
# sys/ldr.h does not exist. (FIXME)
|
||||||
|
xcoffexec.o: ${srcdir}/xcoffexec.c
|
||||||
|
${CC} -c ${INTERNAL_CFLAGS} -I${BFD_DIR} ${srcdir}/xcoffexec.c
|
||||||
|
|
||||||
lint: $(LINTFILES)
|
lint: $(LINTFILES)
|
||||||
$(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
|
$(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
|
||||||
|
@ -54,7 +54,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include "coff/rs6000.h" /* FIXME, raw file-format guts of xcoff */
|
#include "coff/rs6000.h" /* FIXME, raw file-format guts of xcoff */
|
||||||
|
|
||||||
/* For interface with stabsread.c. */
|
/* For interface with stabsread.c. */
|
||||||
#include "stab_gnu.h"
|
#include "aout/stab_gnu.h"
|
||||||
|
|
||||||
/* Define this if you want gdb to ignore typdef stabs. This was needed for
|
/* Define this if you want gdb to ignore typdef stabs. This was needed for
|
||||||
one of Transarc, to reduce the size of the symbol table. Types won't be
|
one of Transarc, to reduce the size of the symbol table. Types won't be
|
||||||
|
Reference in New Issue
Block a user