Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gcc/lib/libgcc fix -I paths for powerpc*. con...



details:   https://anonhg.NetBSD.org/src/rev/ae2b01a4b573
branches:  trunk
changeset: 455878:ae2b01a4b573
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Apr 16 08:08:18 2019 +0000

description:
fix -I paths for powerpc*.  convert amd64 specific hack.

we've been building dp-bit.c and fp-bit.c backwards, but as they
use the same input source, they just had opposite objects and
the right total was provided.  oops.

diffstat:

 external/gpl3/gcc/lib/libgcc/Makefile.inc |  16 +++++++---------
 1 files changed, 7 insertions(+), 9 deletions(-)

diffs (54 lines):

diff -r 3a83e323c8b5 -r ae2b01a4b573 external/gpl3/gcc/lib/libgcc/Makefile.inc
--- a/external/gpl3/gcc/lib/libgcc/Makefile.inc Tue Apr 16 08:04:23 2019 +0000
+++ b/external/gpl3/gcc/lib/libgcc/Makefile.inc Tue Apr 16 08:08:18 2019 +0000
@@ -1,6 +1,7 @@
-#      $NetBSD: Makefile.inc,v 1.41 2019/04/03 02:13:56 mrg Exp $
+#      $NetBSD: Makefile.inc,v 1.42 2019/04/16 08:08:18 mrg Exp $
 
 LIBGCC_MACHINE_ARCH?=${MACHINE_ARCH:S/earmv5/earm/}
+GCC_MACHINE_SUBDIR=${MACHINE_CPU:C/powerpc.*/rs6000/:C/x86_64/i386/}
 
 .if ${MKGCC} != "no"
 .if exists(${.CURDIR}/../arch/${LIBGCC_MACHINE_ARCH}/defs.mk)
@@ -22,11 +23,7 @@
 CPPFLAGS+=     ${GCPPFLAGS:M-m*} ${GCPPFLAGS:M-f*}
 CPPFLAGS+=     ${G_EXTRA_HEADERS:M/*:H:u:S/^/-I/g}
 CPPFLAGS+=     -I${DIST}/libgcc -I${DIST}/libgcc/config
-.if ${LIBGCC_MACHINE_ARCH} == "x86_64"
-CPPFLAGS+=     -I${DIST}/libgcc/config/i386
-.else
-CPPFLAGS+=     -I${DIST}/libgcc/config/${LIBGCC_MACHINE_ARCH}
-.endif
+CPPFLAGS+=     -I${DIST}/libgcc/config/${GCC_MACHINE_SUBDIR}
 CPPFLAGS+=     -I${DIST}/gcc -I${DIST}/include -I.
 CPPFLAGS+=     ${G_INTERNAL_CFLAGS:M-DHAVE_CC_TLS}
 
@@ -120,7 +117,7 @@
 # from the list of files we create.
 .if !empty(G_LIB1ASMFUNCS)
 . for f in ${G_LIB1ASMFUNCS:=.S}
-.  if !exists(${DIST}/libgcc/config/${MACHINE_CPU}/${f})
+.  if !exists(${DIST}/libgcc/config/${GCC_MACHINE_SUBDIR}/${f})
 LIB1ASMFUNCS+= ${f}
 .  endif
 . endfor
@@ -184,16 +181,17 @@
        ${_MKTARGET_COMPILE}
        ${COMPILE.c} ${CPICFLAGS} -fexceptions -fnon-call-exceptions ${COPTS.${.IMPSRC:T}} -o ${.TARGET} ${.IMPSRC}
 
+CPPFLAGS.fp-bit.c+=    -DFLOAT=1
 dp-bit.c: ${.CURDIR}/Makefile
        ${_MKTARGET_CREATE}
-       printf '#define FLOAT\n#include <fp-bit.c>\n' >${.TARGET}
+       printf '#include <fp-bit.c>\n' >${.TARGET}
 
 #
 # Common rules.
 #
 
 .PATH: ${DIST}/gcc ${DIST}/gcc/cp ${DIST}/gcc/cp/inc ${DIST}/gcc/config \
-       ${DIST}/libgcc/config ${DIST}/libgcc/config/${MACHINE_CPU} \
+       ${DIST}/libgcc/config ${DIST}/libgcc/config/${GCC_MACHINE_SUBDIR} \
        ${G_LIB2ADD:H:O:u} ${G_LIB2ADDEH:H:O:u} ${GCCARCHLIBGCC}
 
 .include "../Makefile.tconfigh"



Home | Main Index | Thread Index | Old Index