GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user