10 lines
248 B
Bash
Executable File
10 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# https://developer.apple.com/library/content/qa/qa1964/_index.html#//apple_ref/doc/uid/DTS40017675-CH1-SOURCECODE2
|
|
|
|
for fmk in $(find Carthage/Build -type f -perm -a=x) ; do
|
|
echo $fmk && nm -m -arch all $fmk | grep __llvm_prf
|
|
|
|
done
|
|
|