[haiku-commits] buildtools: btrev43060 - gcc/gcc/config/i386

  • From: alex@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 27 Jul 2013 17:08:13 +0200 (CEST)

btrev43060 adds 1 changeset to branch 'master'
old head: 0b4c64c23c980702a3e0aa9b3026808ed79d15a0
new head: 6e7ceb81be0897475e261e3ecaf820b45dc79c24
overview: http://cgit.haiku-os.org/buildtools/log/?qt=range&q=6e7ceb8+%5E0b4c64c

----------------------------------------------------------------------------

6e7ceb8: gcc: Don't default to -fomit-frame-pointer on x86_64.
  
  This is already done on x86 using the --enable-frame-pointer option
  to GCC's configure script, but that option only works for 32-bit x86.
  Added an option to haiku64.h that forces it off by default for 64-bit.

                                      [ Alex Smith <alex@xxxxxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    btrev43060
Commit:      6e7ceb81be0897475e261e3ecaf820b45dc79c24
URL:         http://cgit.haiku-os.org/buildtools/commit/?id=6e7ceb8
Author:      Alex Smith <alex@xxxxxxxxxxxxxxxx>
Date:        Sat Jul 27 15:06:05 2013 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+)
gcc/gcc/config/i386/haiku64.h | 2 ++

----------------------------------------------------------------------------

diff --git a/gcc/gcc/config/i386/haiku64.h b/gcc/gcc/config/i386/haiku64.h
index 868a929..55550ab 100644
--- a/gcc/gcc/config/i386/haiku64.h
+++ b/gcc/gcc/config/i386/haiku64.h
@@ -131,3 +131,5 @@ Boston, MA 02111-1307, USA.  */
 
 #undef TARGET_ASM_UNIQUE_SECTION
 #define TARGET_ASM_UNIQUE_SECTION  x86_64_elf_unique_section
+
+#define USE_X86_64_FRAME_POINTER 1


Other related posts:

  • » [haiku-commits] buildtools: btrev43060 - gcc/gcc/config/i386 - alex