Files
photon/scripts/add-framework-crt.sh
2020-11-23 19:58:07 +00:00

10 lines
173 B
Bash
Executable File

#!/bin/bash
bundle_prog=$1
framework_path=$2
binary_dir=$3
crt_files=$(find $binary_dir -name "crt*.o")
$bundle_prog framework add-binaries -f $framework_path $crt_files