Files
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

13 lines
278 B
Bash
Executable File

#!/bin/bash
# USAGE: put files and ports in the arrays below and export the abi you want to use
declare -a files=()
declare -a ports=()
for file in "${files[@]}"; do
for port in "${ports[@]}"; do
ln -rsiv abis/$abi/$file sysdeps/$port/include/abi-bits/$file
done
done