Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / x86 / check_cc.sh
blob172d3293fb7bed8f04802f1b5ccd495ec9782cff
1 #!/bin/sh
2 # check_cc.sh - Helper to test userspace compilation support
3 # Copyright (c) 2015 Andrew Lutomirski
4 # GPL v2
6 CC="$1"
7 TESTPROG="$2"
8 shift 2
10 if "$CC" -o /dev/null "$TESTPROG" -O0 "$@" 2>/dev/null; then
11 echo 1
12 else
13 echo 0
16 exit 0