summaryrefslogtreecommitdiffstats
path: root/lld/test/mach-o/Inputs/DependencyDump.py
blob: 0f4d49d6fb9a83005ff5cd86ef4ec33271fc150f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- Python -*-


#
# Dump out Xcode binary dependency file.
#

import sys

f = open(sys.argv[1], "rb")
byte = f.read(1)
while byte != b'':
    if byte == b'\000':
        sys.stdout.write("linker-vers: ")
    elif byte == b'\020':
        sys.stdout.write("input-file:  ")
    elif byte == b'\021':
        sys.stdout.write("not-found:   ")
    elif byte == b'\100':
        sys.stdout.write("output-file: ")
    byte = f.read(1)
    while byte != b'\000':
        if byte != b'\012':
            sys.stdout.write(byte.decode("ascii"))
        byte = f.read(1)
    sys.stdout.write("\n")
    byte = f.read(1)

f.close()

OpenPOWER on IntegriCloud