diff options
author | Pedro Alves <palves@redhat.com> | 2015-11-19 14:32:54 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-11-19 14:32:54 +0000 |
commit | dad44a1fbaa460e5ff80ce203196bc1c1317dc60 (patch) | |
tree | 4c5555eec5feebb18d0a701fe5a2f3887e79c965 /gdb/build-with-cxx.m4 | |
parent | c6d811243634c84e185a25faf33491ee1a5f900a (diff) | |
download | gdb-dad44a1fbaa460e5ff80ce203196bc1c1317dc60.zip gdb-dad44a1fbaa460e5ff80ce203196bc1c1317dc60.tar.gz gdb-dad44a1fbaa460e5ff80ce203196bc1c1317dc60.tar.bz2 |
[C++] Drop -fpermissive hack
Both x86_64 GNU/Linux and x86_64 mingw-w64 build cleanly with
--enable-targets=all. Let's drop the -fpermissive hack, in order to
let the buildbot catch C++ build regressions for us.
gdb/ChangeLog:
2015-11-19 Pedro Alves <palves@redhat.com>
* build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Remove -fpermissive.
* configure: Regenerate.
gdb/gdbserver/ChangeLog:
2015-11-19 Pedro Alves <palves@redhat.com>
* configure: Regenerate.
Diffstat (limited to 'gdb/build-with-cxx.m4')
-rw-r--r-- | gdb/build-with-cxx.m4 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/build-with-cxx.m4 b/gdb/build-with-cxx.m4 index 8802f4d..b6284fd 100644 --- a/gdb/build-with-cxx.m4 +++ b/gdb/build-with-cxx.m4 @@ -32,8 +32,7 @@ AC_DEFUN([GDB_AC_BUILD_WITH_CXX], [enable_build_with_cxx=no]) if test "$enable_build_with_cxx" = "yes"; then - # We're using -fpermissive as shortcut for now. - COMPILER='$(CXX) -fpermissive' + COMPILER='$(CXX)' else COMPILER='$(CC)' fi |