mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
feat(script): add script to concatenate symbol files
This commit is contained in:
parent
58f7996e35
commit
494c653c00
1 changed files with 11 additions and 0 deletions
11
script/compile-symbols
Executable file
11
script/compile-symbols
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue