summaryrefslogtreecommitdiffstats
path: root/build/cc.sh
blob: fd58393f7758be880f053fbc81b05e01535a95b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# Copyright © Tavian Barnes <tavianator@tavianator.com>
# SPDX-License-Identifier: 0BSD

# Run the compiler and check if it succeeded

set -eu

if [ "$1" = "-q" ]; then
    shift
else
    set -x
fi

$XCC $XCPPFLAGS $XCFLAGS $XLDFLAGS "$@" $XLDLIBS