12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
framework_path=$1
|
|
binary_dir=$2
|
|
|
|
crt_files=$(find $binary_dir -name "crt*.o")
|
|
|
|
for crt_file in $crt_files; do
|
|
out="$framework_path/bin/$(basename $crt_file .o).o"
|
|
cp -f $crt_file $out
|
|
done
|