sdk-hwV1.3/lichee/brandy-2.0/u-boot-2018/scripts/gcc-stack-usage.sh

18 lines
310 B
Bash
Raw Normal View History

2024-05-07 10:09:20 +00:00
#!/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