diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6e8d818..65771fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2019-05-13 Uroš Bizjak <ubizjak@gmail.com> + + PR target/89221 + * configure.ac (--enable-frame-pointer): + Disable by default for cygwin and mingw. + * configure: Regenerate. + 2019-05-13 Nathan Sidwell <nathan@acm.org> * dwarf2out.c (breakout_comdat_types): Move comment to correct diff --git a/gcc/configure b/gcc/configure index 947d263..3cab176 100755 --- a/gcc/configure +++ b/gcc/configure @@ -12197,7 +12197,7 @@ if test "${enable_frame_pointer+set}" = set; then : else case $target_os in -linux* | gnu* | darwin[8912]*) +linux* | gnu* | darwin[8912]* | cygwin* | mingw*) # Enable -fomit-frame-pointer by default for these systems with DWARF2. enable_frame_pointer=no ;; diff --git a/gcc/configure.ac b/gcc/configure.ac index bfcdf52..264f36f 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1884,7 +1884,7 @@ AC_ARG_ENABLE(frame-pointer, [enable -fno-omit-frame-pointer by default for x86])], [], [ case $target_os in -linux* | gnu* | darwin[[8912]]*) +linux* | gnu* | darwin[[8912]]* | cygwin* | mingw*) # Enable -fomit-frame-pointer by default for these systems with DWARF2. enable_frame_pointer=no ;; |