diff --git a/tools/mockup.sh b/tools/mockup.sh index eb2c14491..c8a8a2215 100755 --- a/tools/mockup.sh +++ b/tools/mockup.sh @@ -14,6 +14,12 @@ if [ $# -eq 0 ]; then # ld: error: undefined symbol: foo() echo "${LINE#*undefined symbol: }" ;; + *,\ referenced\ from:*) + # Apple clang version 11.0.3 (clang-1103.0.32.29) + # "_towire", referenced from: + LINE=${LINE#\"_} + echo "${LINE%\"*}" + ;; *) continue ;;