Added variable to preserve static libraries in base/rust

This commit is contained in:
PktSurf 2022-09-23 12:26:10 +05:30
parent 6db354d731
commit a960db09f4
2 changed files with 3 additions and 3 deletions

View file

@ -27,8 +27,6 @@ build() {
mkdir -p $pkg/etc/udev/rules.d
cp $srcdir/*.rules $pkg/etc/udev/rules.d/
mv $pkg/share/pkgconfig/* $pkg/lib/pkgconfig/
cp COPYING $pkgdocs/
mkfinalpkg

View file

@ -5,6 +5,8 @@ homepage="https://rust-lang.org"
download="https://static.rust-lang.org/dist/rustc-$version-src.tar.xz"
desc="A safe, concurrent, practical language"
requires="gcc-libs bash llvm clang gdb"
# We don't want .rlib files to be removed
preservestaticlibs=1
build() {
mkandenterbuilddir
@ -17,7 +19,7 @@ build() {
# If a rust toolchain does not already exist, extract and install one of the provided ready-to-use toolchains
if [ ! -x /bin/rustc ] ; then
# Create a temporary directory that will house a prebuilt architecture-specific rust toolchain provided by rust developers for bootstrapping
mkdir temp-toolchain
mkdir -p temp-toolchain
cd temp-toolchain
# Extract the toolchain into it