prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
52 lines
1.5 KiB
Text
Executable file
52 lines
1.5 KiB
Text
Executable file
app=clang
|
|
version=10.0.1
|
|
build=1sml
|
|
homepage='https://clang.llvm.org/'
|
|
download=""
|
|
requires="llvm"
|
|
desc="LLVM project-based C language family front-end"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version".src"
|
|
|
|
tar xf $srcdir/$app-$version".src".tar.?z*
|
|
cd $app-$version".src"
|
|
fixbuilddirpermissions
|
|
|
|
patch -p1 < $srcdir/10-add-musl-triples.patch
|
|
patch -p1 < $srcdir/30-fix-python-shebangs.patch
|
|
|
|
unset CFLAGS CXXFLAGS
|
|
|
|
mkdir -p smbuild && cd smbuild
|
|
cmake .. -G Ninja -Wno-dev \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DCMAKE_INSTALL_PREFIX="" \
|
|
-DCLANG_BUILD_EXAMPLES=OFF \
|
|
-DLLVM_LINK_LLVM_DYLIB=ON \
|
|
-DCLANG_LINK_CLANG_DYLIB=ON \
|
|
-DLLVM_INCLUDE_DOCS=OFF \
|
|
-DCMAKE_VERBOSE_MAKEFILE=OFF \
|
|
-DCLANG_INCLUDE_TESTS=ON \
|
|
-DCLANG_PLUGIN_SUPPORT=ON \
|
|
-DLIBCLANG_BUILD_STATIC=ON \
|
|
-DLLVM_ENABLE_EH=ON \
|
|
-DLLVM_ENABLE_RTTI=ON \
|
|
-DCLANG_VENDOR=SMLinux
|
|
|
|
ninja clang-tblgen
|
|
ninja $MAKEFLAGS
|
|
|
|
DESTDIR="$pkg" ninja install
|
|
|
|
cp ../LICENSE.TXT $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
c6712d491ce5e166ef72724cf855d742d88da825ffc25585612d7f2eb7770343e3ae48fa78e0af3e5d5efdde3a9686a7361dac3b546a4378de22448ea6e4026c clang-10.0.1.src.tar.xz
|
|
533558863dc7247202b2a739e1bd2d81a99a16be329370cb734d338284b5408ecd14fe78ac836aaf922e377334b7a3ebef532cf8395d91aafe346bf71eb8b7fc 10-add-musl-triples.patch
|
|
c7f34b425b0dcea9752eeb7ff3d3a33af9cc45740fd3e77d52e4d610c5fd3daaa4d59138a255b057ef886915615a77ec1e6a447f3818b4b2724129c0ba354932 30-fix-python-shebangs.patch
|
|
"
|