diff options
author | Pedro Alves <palves@redhat.com> | 2015-02-11 10:04:47 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-02-11 10:04:47 +0000 |
commit | 55172d69d08941ecb3bb1abd640f22abca10de47 (patch) | |
tree | e727a26c1769b18197b714a443972a4f818a2cf0 /bfd/doc | |
parent | 0703599a49d082a957ee233fe018fb6ea7864920 (diff) | |
download | gdb-55172d69d08941ecb3bb1abd640f22abca10de47.zip gdb-55172d69d08941ecb3bb1abd640f22abca10de47.tar.gz 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/doc')
-rw-r--r-- | bfd/doc/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/doc/Makefile.am | 6 | ||||
-rw-r--r-- | bfd/doc/Makefile.in | 6 |
3 files changed, 17 insertions, 0 deletions
diff --git a/bfd/doc/ChangeLog b/bfd/doc/ChangeLog index fe3d691..07682da 100644 --- a/bfd/doc/ChangeLog +++ b/bfd/doc/ChangeLog @@ -1,3 +1,8 @@ +2015-02-11 Pedro Alves <palves@redhat.com> + + * Makefile.am (libbfd.h, libcoff.h): Close extern "C" scope. + * Makefile.in: Regenerate. + 2015-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de> Alan Modra <amodra@gmail.com> diff --git a/bfd/doc/Makefile.am b/bfd/doc/Makefile.am index 779f361..52da14e 100644 --- a/bfd/doc/Makefile.am +++ b/bfd/doc/Makefile.am @@ -275,6 +275,9 @@ libbfd.h: $(LIBBFD_H_DEP) ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \ esac; \ done + echo "#ifdef __cplusplus" >> $@ + echo "}" >> $@ + echo "#endif" >> $@ LIBCOFF_H_DEP = \ $(srcdir)/../libcoff-in.h \ @@ -294,6 +297,9 @@ libcoff.h: $(LIBCOFF_H_DEP) ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \ esac; \ done + echo "#ifdef __cplusplus" >> $@ + echo "}" >> $@ + echo "#endif" >> $@ BFD_H_DEP = \ $(srcdir)/../bfd-in.h \ diff --git a/bfd/doc/Makefile.in b/bfd/doc/Makefile.in index 78d8ec0..72099f1 100644 --- a/bfd/doc/Makefile.in +++ b/bfd/doc/Makefile.in @@ -960,6 +960,9 @@ libbfd.h: $(LIBBFD_H_DEP) ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \ esac; \ done + echo "#ifdef __cplusplus" >> $@ + echo "}" >> $@ + echo "#endif" >> $@ libcoff.h: $(LIBCOFF_H_DEP) echo "$(LIBCOFF_H_DEP)" | sed -f $(srcdir)/header.sed > $@ @@ -972,6 +975,9 @@ libcoff.h: $(LIBCOFF_H_DEP) ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \ esac; \ done + echo "#ifdef __cplusplus" >> $@ + echo "}" >> $@ + echo "#endif" >> $@ bfd.h: $(BFD_H_DEP) echo "$(BFD_H_DEP)" | sed -f $(srcdir)/header.sed > $@ |