File: gcc-stack-usage.sh

package info (click to toggle)
u-boot 2019.01%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 118,016 kB
file content (17 lines) | stat: -rwxr-xr-x 310 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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