aboutsummaryrefslogtreecommitdiff
path: root/bfd/libcoff.h
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-02-11 10:04:47 +0000
committerPedro Alves <palves@redhat.com>2015-02-11 10:04:47 +0000
commit55172d69d08941ecb3bb1abd640f22abca10de47 (patch)
treee727a26c1769b18197b714a443972a4f818a2cf0 /bfd/libcoff.h
parent0703599a49d082a957ee233fe018fb6ea7864920 (diff)
downloadfsf-binutils-gdb-55172d69d08941ecb3bb1abd640f22abca10de47.zip
fsf-binutils-gdb-55172d69d08941ecb3bb1abd640f22abca10de47.tar.gz
fsf-binutils-gdb-55172d69d08941ecb3bb1abd640f22abca10de47.tar.bz2
Wrap BFD headers in extern "C"
These were the BFD changes needed for building a C++ GDB with --enable-targets=all, on x86_64 Fedora 20. For libbfd.h and libcoff.h, this does same as already done when generating bfd.h: open extern "C" in the -in.h header, and close it from the Makefile. bfd/doc/ChangeLog: 2015-02-11 Pedro Alves <palves@redhat.com> * Makefile.am (libbfd.h, libcoff.h): Close extern "C" scope. * Makefile.in: Regenerate. bfd/ChangeLog: 2015-02-11 Pedro Alves <palves@redhat.com> * libbfd-in.h [__cplusplus]: Open extern "C" scope. * libcoff-in.h [__cplusplus]: Open extern "C" scope. * libbfd.h: Regenerate. * libcoff.h: Regenerate. * elf-bfd.h [__cplusplus]: Wrap in extern "C". * mach-o.h [__cplusplus]: Wrap in extern "C". * som.h [__cplusplus]: Wrap in extern "C".
Diffstat (limited to 'bfd/libcoff.h')
-rw-r--r--bfd/libcoff.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/bfd/libcoff.h b/bfd/libcoff.h
index df0e00f..ee72de3 100644
--- a/bfd/libcoff.h
+++ b/bfd/libcoff.h
@@ -26,6 +26,10 @@
#include "bfdlink.h"
#include "coff-bfd.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Object file tdata; access macros. */
#define coff_data(bfd) ((bfd)->tdata.coff_obj_data)
@@ -951,3 +955,6 @@ typedef struct
PE object file. */
#define bfd_pei_p(abfd) \
(CONST_STRNEQ ((abfd)->xvec->name, "pei-"))
+#ifdef __cplusplus
+}
+#endif