diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-08 11:21:07 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-08 11:21:07 -0500 |
commit | d8dd7ab232cd23c38fbc5b19af6dabb903fac546 (patch) | |
tree | e5d5cd5afdaa2dd496ecb7d4fe6e25f887e36d9b /bootstrap | |
parent | 39ed0640f0e33b8a48ba82334de219e9fe4ed0e6 (diff) |
build: Move mlibc fetching into bootstrap script
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -16,14 +16,20 @@ try_fetch() { fetch() { try_fetch "git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1" "stand/limine" + try_fetch "git clone https://github.com/sigsegv7/hyra-mlibc lib/mlibc" } build_limine() { make -C stand/limine/ } +init_mlibc() { + cp builddeps/cross_file.txt lib/mlibc/ +} + build() { build_limine + init_mlibc } echo "----------------------------------" |