]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
sandbox: Fix building with LLVM
authorTom Rini <trini@konsulko.com>
Sat, 5 Mar 2016 19:07:44 +0000 (14:07 -0500)
committerTom Rini <trini@konsulko.com>
Tue, 8 Mar 2016 20:01:46 +0000 (15:01 -0500)
- The macro __BIGGEST_ALIGNMENT__ is gcc-specific.  If it is not defined
  we'll just assume 16.  This is correct for at least the common cases
  and LLVM does not provide an equivalent macro.
- When linking U-Boot we're passing -T to the linker, and while gcc will
  just pass this along with LLVM we need to be specific.

Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/sandbox/config.mk
arch/sandbox/include/asm/cache.h

index b05a90fb18593b79656b2109d80b847bcc93af47..16fd6d508a9322ed5bf68db1b5769cea3b4c9e35 100644 (file)
@@ -16,7 +16,7 @@ PLATFORM_CPPFLAGS += $(shell sdl-config --cflags)
 endif
 endif
 
-cmd_u-boot__ = $(CC) -o $@ -T u-boot.lds \
+cmd_u-boot__ = $(CC) -o $@ -Wl,-T u-boot.lds \
        -Wl,--start-group $(u-boot-main) -Wl,--end-group \
        $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map
 
index d28c385eb5c06c4fd62ca2c9b38d9c208397e27e..ffbb9844ebb5dfc065f40e1ec1b7cc50b789a266 100644 (file)
  * the contents of stack buffers to something reasonable.  The
  * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
  * required alignment for any basic type.  This seems reasonable.
+ * This is however GCC specific so if we don't have that available
+ * assume that 16 is large enough.
  */
+#ifdef __BIGGEST_ALIGNMENT__
 #define ARCH_DMA_MINALIGN      __BIGGEST_ALIGNMENT__
+#else
+#define ARCH_DMA_MINALIGN      16
+#endif
 
 #endif /* __SANDBOX_CACHE_H__ */