mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
566 B
Bash
Executable File
10 lines
566 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Fine-grained swiftdeps files use multiple lines for each graph node.
|
|
# Compress such a file so that each entry is one line of the form:
|
|
# <kind> <aspect> <context> <name> <isProvides>
|
|
# Also sort for consistency, since the node order can vary.
|
|
|
|
${1} --to-yaml --input-filename=${2} --output-filename=${3}.tmp
|
|
|
|
awk '/kind:/ {k = $2; f = "<no fingerprint>"}; /aspect:/ {a = $2}; /context:/ {c = $2}; /name/ {n = $2}; /sequenceNumber/ {s = $2}; /fingerprint:/ {f = $2 }; /isProvides:/ {isP = $2; print k, a, c, n, isP, f}' < ${3}.tmp | sort > ${3}
|