diff --git a/util/build.c b/util/build.c index 8496207..4d688db 100644 --- a/util/build.c +++ b/util/build.c @@ -159,16 +159,20 @@ void BuildAPIDependencies() { ParseDependencies("bin/dependency_files/api_header.d", "API Header", false); } + CallSystem("ports/musl/build.sh " TARGET_NAME); + FILE *f = fopen("bin/Object Files/crt1.o", "rb"); if (f) { fclose(f); } else { + CallSystem("mkdir -p root/Applications/POSIX/lib"); CallSystem(TOOLCHAIN_PREFIX "-gcc -c desktop/crt1.c -o bin/Object\\ Files/crt1.o"); + CallSystem("cp bin/Object\\ Files/crt1.o root/Applications/POSIX/lib"); CallSystem(TOOLCHAIN_PREFIX "-gcc -c desktop/crtglue.c -o bin/Object\\ Files/crtglue.o"); + CallSystem("cp bin/Object\\ Files/crtglue.o root/Applications/POSIX/lib"); } - CallSystem("ports/musl/build.sh " TARGET_NAME); CallSystem("ports/freetype/build.sh " TARGET_NAME); CallSystem("ports/harfbuzz/build.sh " TARGET_NAME);