OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
tools
/
testing
/
selftests
/
x86
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
Makefile
2.87 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
check_cc.sh
264 bytes
11/01/2022 04:52:05 PM
rwxr-xr-x
Editing: check_cc.sh
Close
#!/bin/sh # check_cc.sh - Helper to test userspace compilation support # Copyright (c) 2015 Andrew Lutomirski # GPL v2 CC="$1" TESTPROG="$2" shift 2 if [ -n "$CC" ] && $CC -o /dev/null "$TESTPROG" -O0 "$@" 2>/dev/null; then echo 1 else echo 0 fi exit 0