aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-11-19 14:32:54 +0000
committerPedro Alves <palves@redhat.com>2015-11-19 14:32:54 +0000
commitdad44a1fbaa460e5ff80ce203196bc1c1317dc60 (patch)
tree4c5555eec5feebb18d0a701fe5a2f3887e79c965 /gdb/gdbserver
parentc6d811243634c84e185a25faf33491ee1a5f900a (diff)
downloadfsf-binutils-gdb-dad44a1fbaa460e5ff80ce203196bc1c1317dc60.zip
fsf-binutils-gdb-dad44a1fbaa460e5ff80ce203196bc1c1317dc60.tar.gz
fsf-binutils-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/gdbserver')
-rw-r--r--gdb/gdbserver/ChangeLog4
-rwxr-xr-xgdb/gdbserver/configure3
2 files changed, 5 insertions, 2 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 86e1b64..012ea5e 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,7 @@
+2015-11-19 Pedro Alves <palves@redhat.com>
+
+ * configure: Regenerate.
+
2015-11-19 Yao Qi <yao.qi@linaro.org>
* linux-aarch64-low.c (emit_data_processing_reg): Change opcode
diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure
index 409f42b..4b9aa95 100755
--- a/gdb/gdbserver/configure
+++ b/gdb/gdbserver/configure
@@ -4827,8 +4827,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