https://github.com/mupq/pqm4
Raw File
Tip revision: bd9b47d6d96582fbc2926dd76d99b07a92520913 authored by Matthias J. Kannwischer on 25 November 2023, 07:24:26 UTC
recompute static tables
Tip revision: bd9b47d
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top