Files
photon/scripts/add-framework-crt.sh

10 lines
173 B
Bash
Raw Normal View History

2020-07-07 18:53:54 +01:00
#!/bin/bash
bundle_prog=$1
framework_path=$2
binary_dir=$3
2020-07-07 18:53:54 +01:00
2020-11-05 21:23:34 +00:00
crt_files=$(find $binary_dir -name "crt*.o")
2020-07-07 18:53:54 +01:00
$bundle_prog framework add-binaries -f $framework_path $crt_files