[haiku-commits] buildtools: btrev43145 - gcc/gcc

  • From: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 24 May 2019 21:49:26 -0400 (EDT)

btrev43145 adds 1 changeset to branch 'master'
old head: 341e3be74c170069f7d60c563cbdfc83f48da17c
new head: e649c97b4a2f7ec38efde476163e1bcd4d231afa
overview: 
https://git.haiku-os.org/buildtools/log/?qt=range&q=e649c97b4a2f+%5E341e3be74c17

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

e649c97b4a2f: gcc: Add missing Haiku stdint defines for 
m68k,riscv,mipsel,ppc,sparc64
  
  Change-Id: Iab32e700d7cfaddae8e76742ddc7eb25fbe2c865

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

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

Revision:    btrev43145
Commit:      e649c97b4a2f7ec38efde476163e1bcd4d231afa
URL:         https://git.haiku-os.org/buildtools/commit/?id=e649c97b4a2f
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sat May 25 01:33:26 2019 UTC

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

1 file changed, 5 insertions(+), 5 deletions(-)
gcc/gcc/config.gcc | 10 +++++-----

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

diff --git a/gcc/gcc/config.gcc b/gcc/gcc/config.gcc
index c645bda517..80309f6833 100644
--- a/gcc/gcc/config.gcc
+++ b/gcc/gcc/config.gcc
@@ -2044,7 +2044,7 @@ m68k-*-haiku*)
     default_m68k_cpu=68020
     default_cf_cpu=5206
     tmake_file="${tmake_file} m68k/t-m68kbare m68k/t-crtstuff t-haiku" #??
-    tm_file="${tm_file} dbxelf.h elfos.h haiku.h m68k/haiku.h"
+    tm_file="${tm_file} dbxelf.h elfos.h haiku.h m68k/haiku.h haiku-stdint.h"
     tm_defines="${tm_defines} MOTOROLA=1"
     ;;
 mcore-*-elf)
@@ -2099,7 +2099,7 @@ microblaze*-*-elf)
        tmake_file="${tmake_file} microblaze/t-microblaze"
         ;;
 riscv*-*-haiku*)
-       tm_file="elfos.h haiku.h ${tm_file} riscv/haiku.h"
+       tm_file="elfos.h haiku.h ${tm_file} riscv/haiku.h haiku-stdint.h"
        tmake_file="${tmake_file} t-haiku riscv/t-riscv riscv/t-haiku"
        gnu_ld=yes
        gas=yes
@@ -2175,7 +2175,7 @@ mips*-mti-linux*)
        ;;
 mipsel-*-haiku*)
     target_cpu_default="MASK_ABICALLS"
-    tm_file="elfos.h ${tm_file} haiku.h mips/haiku.h"
+    tm_file="elfos.h ${tm_file} haiku.h mips/haiku.h haiku-stdint.h"
     tmake_file="${tmake_file} mips/t-elf t-haiku"
     ;;
 mips*-*-linux*)                                # Linux MIPS, either endian.
@@ -2520,7 +2520,7 @@ powerpc-*-eabi*)
        ;;
 powerpc-*-haiku*)
        tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-ppcos 
rs6000/t-ppccomm t-haiku"
-       tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h rs6000/sysv4.h 
haiku.h rs6000/haiku.h"
+       tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h rs6000/sysv4.h 
haiku.h rs6000/haiku.h haiku-stdint.h"
        extra_options="${extra_options} rs6000/sysv4.opt"
        ;;
 powerpc-*-rtems*spe*)
@@ -3010,7 +3010,7 @@ sparc64-*-rtems*)
        tmake_file="${tmake_file} sparc/t-sparc sparc/t-rtems-64"
        ;;
 sparc64-*-haiku*)
-       tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h 
haiku.h sparc/haiku.h"
+       tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/sp64-elf.h 
haiku.h sparc/haiku.h haiku-stdint.h"
        extra_options="${extra_options}"
        tmake_file="${tmake_file} t-haiku sparc/t-sparc sparc/t-haiku"
        ;;


Other related posts:

  • » [haiku-commits] buildtools: btrev43145 - gcc/gcc - Alex von Gluck IV