-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathMakefile.inc
More file actions
52 lines (46 loc) · 1.86 KB
/
Copy pathMakefile.inc
File metadata and controls
52 lines (46 loc) · 1.86 KB
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
42
43
44
45
46
47
48
49
50
51
52
# Copyright (C) 2026 John Törnblom
# Copyright (C) 2026 Aleksei Kulaev
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not see
# <http://www.gnu.org/licenses/>.
MAKE ?= make
PYTHON ?= python3
DESTDIR ?= /opt/ps5-payload-sdk
LLVM_CONFIG_CANDIDATES := llvm-config-22 llvm-config-21 \
llvm-config-20 llvm-config-19 llvm-config-18 \
llvm-config-17 llvm-config-16 llvm-config-15 \
llvm-config
LLVM_CONFIG_CANDIDATES := $(foreach LCC,$(LLVM_CONFIG_CANDIDATES), \
$(if $(shell command -v $(LCC) 2>/dev/null), $(LCC)))
LLVM_CONFIG ?= $(firstword $(LLVM_CONFIG_CANDIDATES))
ifndef LLVM_CONFIG
$(error Unable to find llvm-config)
endif
LLVM_BINDIR := $(shell $(LLVM_CONFIG) --bindir)
CC := $(LLVM_BINDIR)/clang
AR := $(LLVM_BINDIR)/llvm-ar
LD := $(LLVM_BINDIR)/ld.lld
# When using macos with brew, lld-19 and above are not installed in the standard
# llvm bindir directory, compensate for that here.
ifeq ($(shell command -v $(LD) 2>/dev/null),)
OS := $(shell uname -s)
ifeq ($(OS),Darwin)
BREW := $(shell command -v brew 2>/dev/null)
ifneq ($(BREW),)
LD := $(shell $(BREW) --prefix lld 2>/dev/null)/bin/ld.lld
else
$(error Unable to find brew)
endif
endif
endif