https://github.com/mupq/pqm4
Raw File
Tip revision: 8d44b724396ddbc0db55d5de93bec252cedb9c04 authored by Matthias J. Kannwischer on 13 August 2024, 00:06:44 UTC
init msg buffer in {speed,hashing}.c (#351)
Tip revision: 8d44b72
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