From 84d199451cf33734003c00c043a1480920f5563b Mon Sep 17 00:00:00 2001 From: Pasha Date: Thu, 29 Feb 2024 19:30:30 +0000 Subject: initial commit --- bootstrap.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bootstrap.sh (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100644 index 0000000..6ef6efb --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +. ./vars.sh +. ./download-funcs.sh +. ./bootstrap-funcs.sh + +print_info "Root is $CROSS_TOOLS" +print_info "Cross-compiling on $HOST to $TARGET" + +setup_directories + +mkdir -p $BUILD_ROOT/bootstrap && + cd $BUILD_ROOT/bootstrap && + compile_binutils && + compile_gcc && + compile_pkgconfiglite && + install_gnumach_headers && + install_gnumig && + install_hurd_headers && + compile_first_glibc && + compile_full_gcc && + compile_second_glibc && + print_info "bootstrap.sh finished successfully" && + exit 0 -- cgit v1.2.1