blob: deda69205cfa7e1ac2a23e571f2cf01579b3be6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# If SDKROOT is set, use that. If it is not set, use whatever SDK is available.
# This might still end up being invalid if neither Xcode nor CLT have been
# installed, and that's what sdkroot_exists is for.
### shellcheck #################################################################
# shellcheck shell=bash # no shebang as this file is intended to be sourced
# shellcheck disable=SC2034 # we only use exports if we really need them
### variables ##################################################################
if [ -z "$SDKROOT" ]; then
if xcodebuild --help 2>/dev/null; then
SDKROOT=$(xcodebuild -version -sdk macosx Path)
else
SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
fi
fi
export SDKROOT
### functions ##################################################################
function sdkroot_exists
{
if [ -d "$SDKROOT" ]; then
return 0 # SDK found
else
echo_e "SDK not found: $SDKROOT"
return 1
fi
}
### main #######################################################################
# Nothing here.
|