diff options
author | Pip Cet <pipcet@gmail.com> | 2017-03-27 13:41:39 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-03-27 13:41:39 +0100 |
commit | a6be053897be3786ceda9a59d17befe11454f6d2 (patch) | |
tree | 376ce48fd695807471d9275ce3272253f31918e8 /bfd/Makefile.am | |
parent | 210477268d4ac5cad937e811888a5c932206794c (diff) | |
download | gdb-a6be053897be3786ceda9a59d17befe11454f6d2.zip gdb-a6be053897be3786ceda9a59d17befe11454f6d2.tar.gz gdb-a6be053897be3786ceda9a59d17befe11454f6d2.tar.bz2 |
Add support for the WebAssembly backend to the BFD library.
* wasm-module.c: New file to support WebAssembly modules.
* wasm-module.h: New file to support WebAssembly modules.
* doc/webassembly.texi: Start documenting wasm-module.c.
* config.bfd: Add wasm_vec.
* targets.c: Likewise.
* configure.ac: Likewise.
* Makefile.am: Add entries for wasm-module.c.
* Makefile.in: Regenerate.
* configure: Regenerate.
* po/SRC-POTFILES.in: Regenerate.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 6fa8302..49ab092 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -459,6 +459,7 @@ BFD32_BACKENDS = \ versados.lo \ vms-lib.lo \ vms-misc.lo \ + wasm-module.lo \ xcofflink.lo \ xsym.lo \ xtensa-isa.lo \ @@ -652,6 +653,7 @@ BFD32_BACKENDS_CFILES = \ versados.c \ vms-lib.c \ vms-misc.c \ + wasm-module.c \ xcofflink.c \ xsym.c \ xtensa-isa.c \ |