summaryrefslogtreecommitdiff
path: root/lld/test/MachO/lit.local.cfg
blob: 929160d0c001f7f446e487871b9f9d36185aadd1 (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
# -*- Python -*-

import os

# We specify the most commonly-used archs and platform versions in our tests
# here. Tests which need different settings can just append to this, as only
# the last value will be used.
#
# Note however that this does not apply to `-syslibroot`: each instance of that
# flag will append to the set of library roots. As such, we define a separate
# alias for each platform.

lld_watchos = ('ld64.lld -lSystem -arch arm64_32 -platform_version watchos 7.0 8.0 -syslibroot ' +
    os.path.join(config.test_source_root, "MachO", "Inputs", "WatchOS.sdk"))
config.substitutions.append(('%lld-watchos', lld_watchos + ' -fatal_warnings'))
config.substitutions.append(('%no-fatal-warnings-lld-watchos', lld_watchos))

config.substitutions.append(('%no-arg-lld', 'ld64.lld'))

# Since most of our tests are written around x86_64, we give this platform the
# shortest substitution of "%lld".
lld = ('ld64.lld -arch x86_64 -platform_version macos 11.0 11.0 -syslibroot ' +
    os.path.join(config.test_source_root, "MachO", "Inputs", "MacOSX.sdk"))
config.substitutions.append(('%lld', lld + ' -lSystem -fatal_warnings'))
config.substitutions.append(('%no-lsystem-lld', lld + ' -fatal_warnings'))
config.substitutions.append(('%no-fatal-warnings-lld', lld + ' -lSystem'))