Files
bl-mt798x/uboot-mtk-20220606/scripts/gcc-stack-usage.sh
Jianhui Zhao cc7705c272 Init
Signed-off-by: Jianhui Zhao <jianhui.zhao@gl-inet.com>
2022-09-07 16:27:20 +08:00

18 lines
310 B
Bash
Executable File

#!/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