Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Apr 2008 19:16:13 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 139366 for review
Message-ID:  <200804041916.m34JGDi7097196@repoman.freebsd.org>

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

Change 139366 by imp@imp_lighthouse on 2008/04/04 19:15:16

	Force endian on little endian kernel builds too.
	If one were to build a toolchain with TARGET_BIG_ENDIAN set, then
	all little endian kernels would fail.

Affected files ...

.. //depot/projects/arm/src/sys/conf/Makefile.arm#23 edit

Differences ...

==== //depot/projects/arm/src/sys/conf/Makefile.arm#23 (text+ko) ====

@@ -40,6 +40,10 @@
 CC += -mbig-endian
 SYSTEM_LD += -EB
 LD += -EB
+.else
+CC += -mlittle-endian
+SYSTEM_LD += -EL
+LD += -EL
 .endif
 
 



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