Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Aug 2006 06:54:02 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 105248 for review
Message-ID:  <200608290654.k7T6s2LT049356@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=105248

Change 105248 by imp@imp_lighthouse on 2006/08/29 06:53:08

	config.guess, from autoconf, really wants $MACHINE-freebsd as
	the target.  It barfs on $MACHINE-$MACHINE_ARCH.  So
	we'll not be able to do that.  This effectively means that
	we'll MACHINE uniquely defines MACHINE_ARCH, I believe.  We
	might be able to get away with $MACHINE-$MACHINE_ARCH-freebsd.
	The middle tuple is suppsed to be for manufacturer, and the
	first one for architecture, but in practice it hasn't worked out
	that way.  The middle tuple is effectively unused...
	
	Since we'll likely need arm and armeb so that we can cross
	build for both on the same box, have binary packages in a
	meaningful way, etc, that means we'll likely have to do a
	little bit of grossness in the kernel because otherwise we'll
	have to do a lot of grossness outside the kernel.

Affected files ...

.. //depot/projects/arm/src/Makefile.inc1#11 edit

Differences ...

==== //depot/projects/arm/src/Makefile.inc1#11 (text+ko) ====

@@ -1209,7 +1209,7 @@
 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
 	    -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE 
 
-XDDIR=${XDEV}-${XDEV_ARCH}
+XDDIR=${XDEV}-freebsd
 XDTP=/usr/${XDDIR}
 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
 	TARGET=${XDEV} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608290654.k7T6s2LT049356>