162306a36Sopenharmony_ci#!/bin/sh 262306a36Sopenharmony_ci# SPDX-License-Identifier: GPL-2.0 362306a36Sopenharmony_ci 462306a36Sopenharmony_ci# This requires GCC 8.1 or better. Specifically, we require 562306a36Sopenharmony_ci# -mstack-protector-guard-reg, added by 662306a36Sopenharmony_ci# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81708 762306a36Sopenharmony_ci 862306a36Sopenharmony_ciecho "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m32 -O0 -fstack-protector -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard - -o - 2> /dev/null | grep -q "%fs" 9