2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/clang/build

30 lines
762 B
Plaintext
Raw Normal View History

2019-07-31 13:40:00 +00:00
#!/bin/sh -e
2019-11-14 00:29:42 +00:00
cmake -B build \
2019-07-31 13:40:00 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_EH=ON \
2020-09-17 05:43:21 +00:00
-DLLVM_ENABLE_LIBXML=OFF \
2019-07-31 13:40:00 +00:00
-DCLANG_BUILD_EXAMPLES=OFF \
-DCLANG_INCLUDE_DOCS=OFF \
-DCLANG_INCLUDE_TESTS=OFF \
-DLIBCLANG_BUILD_STATIC=ON \
2019-11-14 00:29:42 +00:00
-Wno-dev
2019-07-31 13:40:00 +00:00
2019-11-14 00:29:42 +00:00
cmake --build build
cmake --install build
2020-05-08 08:57:33 +00:00
# Fix up libexec location. This can't be done during
# the configure stage of the build as it is hardcoded.
{
mv -f "$1/usr/libexec/ccc-analyzer" "$1/usr/lib/clang"
mv -f "$1/usr/libexec/c++-analyzer" "$1/usr/lib/clang"
rmdir "$1/usr/libexec"
2021-07-03 20:41:01 +00:00
sed 's|libexec|lib/clang|' "$1/usr/bin/scan-build" > _
mv -f _ "$1/usr/bin/scan-build"
chmod +x "$1/usr/bin/scan-build"
2020-05-08 08:57:33 +00:00
}