https://github.com/torvalds/linux
Raw File
Tip revision: e90d4a2dc4d16f354bff593e0711a504b536e428 authored by tempanony on 28 October 2018, 22:32:33 UTC
elan_i2c_core.c -- add another acpi id
Tip revision: e90d4a2
gcc-x86_32-has-stack-protector.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m32 -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
back to top