PERFORCE change 139366 for review

Warner Losh imp at FreeBSD.org
Fri Apr 4 19:16:14 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=139366

Change 139366 by imp at 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
 
 


More information about the p4-projects mailing list