Blame view

scripts/gcc-x86_32-has-stack-protector.sh 219 Bytes
60a5317ff   Tejun Heo   x86: implement x8...
1
  #!/bin/sh
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
60a5317ff   Tejun Heo   x86: implement x8...
3

b1e0d8b70   Jean Delvare   kbuild: Fix gcc -...
4
  echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
60a5317ff   Tejun Heo   x86: implement x8...
5
6
7
8
9
  if [ "$?" -eq "0" ] ; then
  	echo y
  else
  	echo n
  fi