79087567

Date: 2024-10-14 20:07:24
Score: 2.5
Natty:
Report link

arm processor xcrun --find bitcode_strip

# Step 2: Strip Bitcode from all frameworks that contain it
if [ -f bitcode_frameworks.txt ]; then
  echo "Stripping bitcode from frameworks..."
  while read -r binary_path; do
    xcrun --find bitcode_strip "$binary_path"
  done < bitcode_frameworks.txt
else
  echo "No frameworks found containing bitcode. Exiting."
  exit 1
fi

https://stackoverflow.com/a/79068675/9752882

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xprof