[f85bc15] | 1 | from __future__ import print_function |
---|
| 2 | |
---|
| 3 | import os |
---|
[f3b9efc] | 4 | import sys |
---|
[28582b2] | 5 | import tools |
---|
[bacc36c] | 6 | |
---|
[f85bc15] | 7 | try : |
---|
[afe8882] | 8 | testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0]))) |
---|
| 9 | sys.path.append(testpath) |
---|
[552f5cb] | 10 | import config |
---|
[f85bc15] | 11 | |
---|
[552f5cb] | 12 | SRCDIR = os.path.abspath(config.SRCDIR) |
---|
| 13 | BUILDDIR = os.path.abspath(config.BUILDDIR) |
---|
[afe8882] | 14 | os.chdir(testpath) |
---|
| 15 | |
---|
[f85bc15] | 16 | except: |
---|
| 17 | print('ERROR: missing config.py, re-run configure script.', file=sys.stderr) |
---|
| 18 | sys.exit(1) |
---|
| 19 | |
---|
[bacc36c] | 20 | class Architecture: |
---|
[f3b9efc] | 21 | KnownArchitectures = { |
---|
| 22 | 'x64' : 'x64', |
---|
| 23 | 'x86-64' : 'x64', |
---|
[552f5cb] | 24 | 'x86_64' : 'x64', |
---|
[f3b9efc] | 25 | 'x86' : 'x86', |
---|
| 26 | 'i386' : 'x86', |
---|
| 27 | 'i486' : 'x86', |
---|
| 28 | 'i686' : 'x86', |
---|
| 29 | 'Intel 80386' : 'x86', |
---|
| 30 | 'arm' : 'arm', |
---|
| 31 | 'ARM' : 'arm', |
---|
| 32 | } |
---|
| 33 | |
---|
[575a6e5] | 34 | CrossCompileFlags = { |
---|
| 35 | 'x64' : 'ARCH_FLAGS=-m64', |
---|
| 36 | 'x86' : 'ARCH_FLAGS=-m32', |
---|
| 37 | } |
---|
| 38 | |
---|
[f3b9efc] | 39 | def __init__(self, arch): |
---|
[575a6e5] | 40 | try: |
---|
| 41 | canonical_host = Architecture.makeCanonical( config.HOSTARCH ) |
---|
| 42 | except KeyError: |
---|
| 43 | print("Unkown host architecture %s" % config.HOSTARCH, file=sys.stderr) |
---|
| 44 | sys.exit(1) |
---|
| 45 | |
---|
[f3b9efc] | 46 | if arch: |
---|
| 47 | try: |
---|
[575a6e5] | 48 | arch = Architecture.makeCanonical( arch ) |
---|
[f3b9efc] | 49 | except KeyError: |
---|
[575a6e5] | 50 | print("Unkown architecture %s" % arch, file=sys.stderr) |
---|
[f3b9efc] | 51 | sys.exit(1) |
---|
[575a6e5] | 52 | |
---|
| 53 | if arch and arch != canonical_host: |
---|
| 54 | self.target = arch |
---|
| 55 | self.cross_compile = True |
---|
| 56 | else: |
---|
| 57 | self.target = canonical_host |
---|
| 58 | self.cross_compile = False |
---|
[47c1928] | 59 | |
---|
| 60 | |
---|
| 61 | try : |
---|
| 62 | self.flags = Architecture.CrossCompileFlags[self.target] |
---|
| 63 | except KeyError: |
---|
| 64 | print("Cross compilation not available for architecture %s" % self.target, file=sys.stderr) |
---|
| 65 | sys.exit(1) |
---|
[575a6e5] | 66 | |
---|
[f3b9efc] | 67 | self.string = self.target |
---|
| 68 | |
---|
| 69 | def update(self): |
---|
| 70 | if not self.cross_compile: |
---|
| 71 | self.target = machine_default() |
---|
| 72 | self.string = self.target |
---|
| 73 | print("updated to %s" % self.target) |
---|
| 74 | |
---|
| 75 | def match(self, arch): |
---|
| 76 | return True if not arch else self.target == arch |
---|
| 77 | |
---|
| 78 | @classmethod |
---|
| 79 | def makeCanonical(_, arch): |
---|
| 80 | return Architecture.KnownArchitectures[arch] |
---|
| 81 | |
---|
[bacc36c] | 82 | |
---|
[f3b9efc] | 83 | class Debug: |
---|
| 84 | def __init__(self, value): |
---|
| 85 | self.string = "debug" if value else "no debug" |
---|
[575a6e5] | 86 | self.flags = """DEBUG_FLAGS="%s" """ % ("-debug -O0" if value else "-nodebug -O2") |
---|
[bacc36c] | 87 | |
---|
[a5121bf] | 88 | class Install: |
---|
| 89 | def __init__(self, value): |
---|
| 90 | self.string = "installed" if value else "in-tree" |
---|
| 91 | self.flags = """INSTALL_FLAGS="%s" """ % ("" if value else "-in-tree") |
---|
| 92 | |
---|
[afe8882] | 93 | class Timeouts: |
---|
| 94 | def __init__(self, ts, tg): |
---|
| 95 | self.single = Timeouts.check(ts) |
---|
| 96 | self.total = Timeouts.check(tg) |
---|
| 97 | |
---|
| 98 | @classmethod |
---|
| 99 | def check(_, value): |
---|
| 100 | if value < 1: |
---|
| 101 | print("Timeouts must be at least 1 second", file=sys.stderr) |
---|
| 102 | sys.exit(1) |
---|
| 103 | |
---|
| 104 | return value |
---|
| 105 | |
---|
[bacc36c] | 106 | def init( options ): |
---|
| 107 | global arch |
---|
| 108 | global dry_run |
---|
| 109 | global generating |
---|
| 110 | global make |
---|
[209383b] | 111 | global debug |
---|
[a5121bf] | 112 | global install |
---|
[afe8882] | 113 | global timeout |
---|
[bacc36c] | 114 | |
---|
| 115 | dry_run = options.dry_run |
---|
| 116 | generating = options.regenerate_expected |
---|
[f3b9efc] | 117 | make = 'make' |
---|
| 118 | debug = Debug(options.debug) |
---|
[a5121bf] | 119 | install = Install(options.install) |
---|
[f3b9efc] | 120 | arch = Architecture(options.arch) |
---|
[afe8882] | 121 | timeout = Timeouts(options.timeout, options.global_timeout) |
---|
[bacc36c] | 122 | |
---|
[f85bc15] | 123 | |
---|
[bacc36c] | 124 | def updateMakeCmd(force, jobs): |
---|
| 125 | global make |
---|
| 126 | |
---|
[28582b2] | 127 | make = "make" if not force else ("make -j%i" % jobs) |
---|
| 128 | |
---|
| 129 | def validate(): |
---|
[afe8882] | 130 | errf = os.path.join(BUILDDIR, ".validate.err") |
---|
| 131 | make_ret, _ = tools.make( ".validate", error_file = errf, redirects = "2> /dev/null 1> /dev/null", ) |
---|
[28582b2] | 132 | if make_ret != 0: |
---|
[afe8882] | 133 | with open (errf, "r") as myfile: |
---|
[28582b2] | 134 | error=myfile.read() |
---|
[575a6e5] | 135 | print("ERROR: Invalid configuration %s:%s" % (arch.string, debug.string), file=sys.stderr) |
---|
[28582b2] | 136 | print(" verify returned : \n%s" % error, file=sys.stderr) |
---|
[afe8882] | 137 | tools.rm(errf) |
---|
[28582b2] | 138 | sys.exit(1) |
---|
| 139 | |
---|
[afe8882] | 140 | tools.rm(errf) |
---|