Skip to content

Commit

Permalink
Install libirqhelp before compiling libacpica
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioc committed Oct 30, 2024
1 parent 066fd97 commit 9f7baf2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,27 @@ get_arch() {
fi
}

install_libirqhelp() {
print_info "Compiling libirqhelp..."
local extra_flags="$1"
rm -rf libirqhelp.obj &&
mkdir -p libirqhelp.obj &&
pushd libirqhelp.obj &&
pushd $SOURCE/$HURD_SRC &&
autoreconf -i &&
popd &&
$SOURCE/$HURD_SRC/configure \
--build=$HOST \
--host=$CROSS_HURD_TARGET \
--prefix=$SYS_ROOT \
--disable-profile \
--without-parted &&
make -j$PROCS libshouldbeinlibc libirqhelp &&
make -C libshouldbeinlibc install &&
make -C libirqhelp install &&
popd
}

install_hurd() {
print_info "Compiling Hurd servers..."
local extra_flags="$1"
Expand Down Expand Up @@ -1054,6 +1075,8 @@ install_perl() {
install_minimal_system() {
install_libxcrypt &&
install_libpciaccess &&
# libacpica needs libirqhelp.
install_libirqhelp &&
install_libacpica &&
install_zlib &&
install_bzip2 &&
Expand Down

0 comments on commit 9f7baf2

Please sign in to comment.