resgen.swift/scripts/carthage-check-llvm-prof.sh
2021-12-10 09:47:55 +01:00

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