17 lines
280 B
Bash
Executable File
17 lines
280 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 \
|
|
-m static \
|
|
$crt_files
|
|
|
|
$bundle_prog framework add-binaries \
|
|
-f $framework_path \
|
|
$crt_files
|