Subversion Repositories Kolibri OS

Compare Revisions

No changes between revisions

Regard whitespace Rev 8640 → Rev 8641

/contrib/kolibri-libc/loader/build.sh
0,0 → 1,24
#!/bin/bash
set -e
 
MKLIB=../linuxtools/mklib
AR=ar
FASM=fasm
 
set -e
 
echo "Generate ASM files..."
cat symbols.txt | $MKLIB
 
echo "Compile ASM files..."
for asm_file in $(find *.asm)
do
$FASM $asm_file > /dev/null
done
 
echo "Create libc.obj.a library..."
ar -rsc ../lib/libc.obj.a *.o
mv __lib__.asm __lib__.asm.bak
rm *.o *.asm
mv __lib__.asm.bak __lib__.asm
echo "Done!"
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/contrib/kolibri-libc/loader/symbols.txt
83,6 → 83,8
shell_gets
shell_cls
shell_exit
shell_get_pid
shell_ping
setbuf
setvbuf
sin