Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
bf2768bd0f
commit
ea34ddeea6
37998 changed files with 9510514 additions and 0 deletions
17
roms/u-boot/scripts/gcc-stack-usage.sh
Executable file
17
roms/u-boot/scripts/gcc-stack-usage.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
# Test for gcc '-fstack-usage' support
|
||||
# Copyright (C) 2013, Masahiro Yamada <yamada.m@jp.panasonic.com>
|
||||
#
|
||||
|
||||
TMP="$$"
|
||||
|
||||
cat <<END | $@ -Werror -fstack-usage -x c - -c -o $TMP >/dev/null 2>&1 \
|
||||
&& echo "y"
|
||||
int main(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
END
|
||||
|
||||
rm -f $TMP $TMP.su
|
Loading…
Add table
Add a link
Reference in a new issue