Blame view

scripts/gcc-x86_64-has-stack-protector.sh 244 Bytes
4f7fd4d7a   Arjan van de Ven   [PATCH] Add the -...
1
  #!/bin/sh
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
4f7fd4d7a   Arjan van de Ven   [PATCH] Add the -...
3

82031ea29   Sebastian Andrzej Siewior   scripts/has-stack...
4
  echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -O0 -mcmodel=kernel -fno-PIE -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
4f7fd4d7a   Arjan van de Ven   [PATCH] Add the -...
5
  if [ "$?" -eq "0" ] ; then
5d707e9c8   Tejun Heo   stackprotector: u...
6
7
8
  	echo y
  else
  	echo n
4f7fd4d7a   Arjan van de Ven   [PATCH] Add the -...
9
  fi