forked from ps5-payload-dev/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibcxx.sh
More file actions
executable file
·59 lines (53 loc) · 2.03 KB
/
Copy pathlibcxx.sh
File metadata and controls
executable file
·59 lines (53 loc) · 2.03 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
53
54
55
56
57
58
59
#!/usr/bin/env bash
# Copyright (C) 2024 John Törnblom
#
# 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/>.
LLVM_URL="https://github.com/llvm/llvm-project/releases/download"
LLVM_VER="17.0.6"
if [[ -z "$PS5_PAYLOAD_SDK" ]]; then
echo "error: PS5_PAYLOAD_SDK is not set"
exit 1
fi
source ${PS5_PAYLOAD_SDK}/toolchain/prospero.sh || exit 1
TEMPDIR=$(mktemp -d)
trap 'rm -rf -- "$TEMPDIR"' EXIT
wget -O $TEMPDIR/llvm.tar.xz \
$LLVM_URL/llvmorg-$LLVM_VER/llvm-project-$LLVM_VER.src.tar.xz || exit 1
tar xf $TEMPDIR/llvm.tar.xz -C $TEMPDIR || exit 1
${CMAKE} -S $TEMPDIR/llvm-project-$LLVM_VER.src/runtimes \
-B $TEMPDIR/build \
-DCMAKE_INSTALL_PREFIX="${PS5_SYSROOT}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="-nostdlib++" \
-DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" \
-DLIBCXX_ENABLE_STATIC=YES \
-DLIBCXX_ENABLE_RTTI=YES \
-DLIBCXX_ENABLE_EXCEPTIONS=YES \
-DLIBCXX_ENABLE_THREADS=YES \
-DLIBCXX_ENABLE_SHARED=NO \
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=NO \
-DLIBCXX_CXX_ABI=libcxxabi \
-DLIBCXXABI_ENABLE_STATIC=YES \
-DLIBCXXABI_ENABLE_EXCEPTIONS=YES \
-DLIBCXXABI_ENABLE_THREADS=YES \
-DLIBCXXABI_USE_LLVM_UNWINDER=YES \
-DLIBCXXABI_ENABLE_SHARED=NO \
-DLIBCXXABI_USE_COMPILER_RT=NO \
-DLIBUNWIND_ENABLE_STATIC=YES \
-DLIBUNWIND_ENABLE_THREADS=YES \
-DLIBUNWIND_IS_BAREMETAL=YES \
-DLIBUNWIND_ENABLE_SHARED=NO \
-DLIBUNWIND_USE_COMPILER_RT=NO || exit 1
${MAKE} -C $TEMPDIR/build install DESTDIR="/"