diff options
author | Ian Lance Taylor <iant@google.com> | 2008-01-23 01:31:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-01-23 01:31:13 +0000 |
commit | 494e05f4405228561f0af4d424136128ff8830d2 (patch) | |
tree | ef8756394ecd755f133be5dc2dfc9b086f6c0cb4 /gold/Makefile.am | |
parent | 64f926997fdf212014e331a695a25b8144182320 (diff) | |
download | gdb-494e05f4405228561f0af4d424136128ff8830d2.zip gdb-494e05f4405228561f0af4d424136128ff8830d2.tar.gz gdb-494e05f4405228561f0af4d424136128ff8830d2.tar.bz2 |
Parse a SECTIONS clause in a linker script.
Diffstat (limited to 'gold/Makefile.am')
-rw-r--r-- | gold/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gold/Makefile.am b/gold/Makefile.am index d1c564c..199c75a 100644 --- a/gold/Makefile.am +++ b/gold/Makefile.am @@ -8,7 +8,8 @@ tooldir = $(exec_prefix)/$(target_alias) ACLOCAL_AMFLAGS = -I ../bfd -I ../config -AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CXXFLAGS) +AM_CFLAGS = $(WARN_CFLAGS) $(LFS_CFLAGS) +AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CFLAGS) INCLUDES = \ -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \ @@ -50,6 +51,7 @@ CCFILES = \ readsyms.cc \ reloc.cc \ resolve.cc \ + script-sections.cc \ script.cc \ stringpool.cc \ symtab.cc \ @@ -80,8 +82,9 @@ HFILES = \ readsyms.h \ reloc.h \ reloc-types.h \ - script.h \ script-c.h \ + script-sections.h \ + script.h \ stringpool.h \ symtab.h \ target.h \ |