1# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o /dev/null -verbose 2>&1 | FileCheck %s 2 3# We detect thumb triples from the binaries, because those are the only ones 4# that are guaranteed to be able to generate a Target instance (for example 5# we would detect armv7m-apple-darwin as non-thumb triple, but you can't 6# instantiate a Target from that). In the user-visible architecture names, and 7# in the lipo invocation, we need to rewrite the thumb arch names to the arm 8# ones. 9 10# CHECK: warning: no debug symbols in executable (-arch armv7) 11 12# CHECK: warning: no debug symbols in executable (-arch armv7s) 13 14# CHECK: warning: no debug symbols in executable (-arch arm64) 15 16# CHECK: Running lipo 17# CHECK-NEXT: lipo -create 18# CHECK-SAME: -segalign armv7 19# CHECK-SAME: -segalign armv7s 20# CHECK-SAME: -segalign arm64 21