mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	The Makefiles call the respective interpreter explicitly, but this makes it easier to use the scripts manually. (This commit follows commit 06ed5c2bfaca of Linux Kernel) Signed-off-by: Michal Marek <mmarek@suse.cz> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# Test for gcc '-fstack-usage' support
 | 
						|
# Copyright (C) 2013, Masahiro Yamada <yamada.m@jp.panasonic.com>
 | 
						|
#
 | 
						|
# SPDX-License-Identifier:	GPL-2.0+
 | 
						|
#
 | 
						|
 | 
						|
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
 |