3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 23:02:18 +00:00
Brooklyn/scripts/gcc-x86_32-has-stack-protector.sh
Scare Crowe 53f3b81e5a T3Q is a slut
Fuck him
2021-10-02 21:09:28 +05:00

9 lines
408 B
Bash

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# This requires GCC 8.1 or better. Specifically, we require
# -mstack-protector-guard-reg, added by
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81708
echo "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"