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/configure | |
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/configure')
-rwxr-xr-x | gdb/configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/configure b/gdb/configure index fd7ea1c..8ef3cf2 100755 --- a/gdb/configure +++ b/gdb/configure @@ -5015,8 +5015,7 @@ fi 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 |