feat(script): add script to concatenate symbol files

This commit is contained in:
phaneron 2024-07-07 19:45:51 -04:00
parent 58f7996e35
commit 494c653c00

11
script/compile-symbols Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# this script just collects symbols into one file for convenience
if [ $# -eq 0 ]
then
echo "Select a version to use"
exit 1
fi
cat $1/symbol/*/*.sym | sort > $1/symbol/main.sym