]> Git Repo - J-u-boot.git/blame - scripts/gcc-stack-usage.sh
driver/ldpaa_eth: Add timeout handling DQRR entry read
[J-u-boot.git] / scripts / gcc-stack-usage.sh
CommitLineData
5b1f1f4a
MY
1#!/bin/sh
2# Test for gcc '-fstack-usage' support
3# Copyright (C) 2013, Masahiro Yamada <[email protected]>
4#
5# SPDX-License-Identifier: GPL-2.0+
6#
7
8TMP="$$"
9
10cat <<END | $@ -Werror -fstack-usage -x c - -c -o $TMP >/dev/null 2>&1 \
11 && echo "y"
12int main(void)
13{
14 return 0;
15}
16END
17
18rm -f $TMP $TMP.su
This page took 0.076064 seconds and 4 git commands to generate.