]> git.sur5r.net Git - u-boot/commitdiff
sandbox: Add instructions about building on 32-bit machines
authorSimon Glass <sjg@chromium.org>
Fri, 22 Jul 2016 15:22:45 +0000 (09:22 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 25 Jul 2016 16:05:53 +0000 (12:05 -0400)
Sandbox is built with 64-bit ints by default. This doesn't work properly on
32-bit machines.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
board/sandbox/README.sandbox
include/configs/sandbox.h

index 9fe3bf171a22d64d18f64892b4f4fdb156214957..ed820d338e586bb9dba9d491152d2325f9757b2a 100644 (file)
@@ -44,6 +44,9 @@ Note:
       make sandbox_defconfig all NO_SDL=1
       ./u-boot
 
+   If you are building on a 32-bit machine you may get errors from __ffs.h
+   about shifting more than the machine word size. Edit the config file
+   include/configs/sandbox.h and change CONFIG_SANDBOX_BITS_PER_LONG to 32.
 
 U-Boot will start on your computer, showing a sandbox emulation of the serial
 console:
index 4de89f8879d07105e3d5240fc8f62edad4b1a8be..197d8bb8cafe05316e167acef554508109004df5 100644 (file)
 
 #define CONFIG_SYS_STDIO_DEREGISTER
 
-/* Number of bits in a C 'long' on this architecture */
+/*
+ * Number of bits in a C 'long' on this architecture. Set this to 32 when
+ * building on a 32-bit machine.
+ */
 #define CONFIG_SANDBOX_BITS_PER_LONG   64
 
 #define CONFIG_LMB