mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-04 10:24:13 +00:00
[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.
This commit is contained in:
parent
c6d8112436
commit
dad44a1fba
@ -1,3 +1,8 @@
|
||||
2015-11-19 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Remove -fpermissive.
|
||||
* configure: Regenerate.
|
||||
|
||||
2015-11-19 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* breakpoint.c (software_watchpoint_add_no_memory_location)
|
||||
|
@ -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
|
||||
|
3
gdb/configure
vendored
3
gdb/configure
vendored
@ -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
|
||||
|
@ -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
|
||||
|
3
gdb/gdbserver/configure
vendored
3
gdb/gdbserver/configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user