mirror of
https://github.com/xomboverlord/buildtools.git
synced 2026-01-11 18:33:17 +01:00
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p .tempobjs
|
|
cd .tempobjs
|
|
|
|
ar x ../../xomb/runtimes/mindrt/drt0.a
|
|
ar x ../../xomb/runtimes/mindrt/mindrt.a
|
|
ar x ../../xomb/user/c/lib/cbindings.a
|
|
ar -rs ../local/x86_64-pc-xomb/lib/libc.a *.o
|
|
|
|
cd ..
|
|
rm -r .tempobjs |