repo/extra/clang/build

32 lines
783 B
Plaintext
Raw Normal View History

2019-07-31 07:40:00 -06:00
#!/bin/sh -e
2019-11-13 17:29:42 -07:00
export DESTDIR="$1"
2019-07-31 07:40:00 -06:00
2019-11-13 17:29:42 -07:00
cmake -B build \
2019-07-31 07:40:00 -06:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_EH=ON \
2020-09-16 23:43:21 -06:00
-DLLVM_ENABLE_LIBXML=OFF \
2019-07-31 07:40:00 -06:00
-DCLANG_BUILD_EXAMPLES=OFF \
-DCLANG_INCLUDE_DOCS=OFF \
-DCLANG_INCLUDE_TESTS=OFF \
-DLIBCLANG_BUILD_STATIC=ON \
2019-11-13 17:29:42 -07:00
-Wno-dev
2019-07-31 07:40:00 -06:00
2019-11-13 17:29:42 -07:00
cmake --build build
cmake --install build
2020-05-08 02:57:33 -06: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 14:41:01 -06: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 02:57:33 -06:00
}