mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
e616100eab
Since commitf51a226436
("efi_loader: provide freestanding library") in parallel builds errors lib/efi_selftest/../efi_loader/efi_freestanding.o: file not recognized: File truncated occur. Obviously make cannot correctly sequence parallel builds with a dependency like ../efi_loader/efi_freestanding.o. Fixes:f51a226436
("efi_loader: provide freestanding library") Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
11 lines
289 B
C
11 lines
289 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Library for freestanding binary
|
|
*
|
|
* Copyright 2019, Heinrich Schuchardt <xypron.glpk@gmx.de>
|
|
*
|
|
* GCC requires that freestanding programs provide memcpy(), memmove(),
|
|
* memset(), and memcmp().
|
|
*/
|
|
|
|
#include "../efi_loader/efi_freestanding.c"
|