Framework is now dynamically linked

This commit is contained in:
Max Wash
2020-11-05 21:23:34 +00:00
parent 635059acc3
commit f7df90bc0f
4 changed files with 32 additions and 16 deletions

View File

@@ -3,9 +3,9 @@
framework_path=$1
binary_dir=$2
crt_files=$(find $binary_dir -name "crt*.s.o")
crt_files=$(find $binary_dir -name "crt*.o")
for crt_file in $crt_files; do
out="$framework_path/Binary/$(basename $crt_file .s.o).o"
out="$framework_path/bin/$(basename $crt_file .o).o"
cp -f $crt_file $out
done