Updated treetap, fixed the bootstrap, and replaced ld.lld with mold

This commit is contained in:
Alexander Hill
2025-11-22 20:35:27 -05:00
parent 320a2dbb2e
commit bca382ed71
8 changed files with 189 additions and 97 deletions

View File

@@ -7,20 +7,7 @@ SRC_VERSION="4.4.1"
build() {
tar xf ../$SRC_FILENAME
cd make-*/
./configure \
--bindir=$TT_BINDIR \
--build=$TT_BUILD \
--datarootdir=/usr/share \
--enable-year2038 \
--host=$TT_TARGET \
--includedir=$TT_INCLUDEDIR \
--libdir=$TT_LIBDIR \
--libexecdir=$TT_LIBDIR \
--localstatedir=/var \
--prefix=$TT_PREFIX \
--runstatedir=/run \
--sbindir=$TT_BINDIR \
--sysconfdir=$TT_CONFDIR
./configure $TT_AUTOCONF_COMMON --enable-year2038
make -O -j $TT_PROCS
}
@@ -29,5 +16,6 @@ clean() {
}
package() {
cd make-*/
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
}