brintos

brintos / linux-shallow public Read only

0
0
Text · 295 B · 8c669c0 Raw
17 lines · bash
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.0-only3# check_cc.sh - Helper to test userspace compilation support4# Copyright (c) 2015 Andrew Lutomirski5 6CC="$1"7TESTPROG="$2"8shift 29 10if [ -n "$CC" ] && $CC -o /dev/null "$TESTPROG" -O0 "$@" 2>/dev/null; then11    echo 112else13    echo 014fi15 16exit 017