https://github.com/mupq/pqm4
Revision 20f1dffccac5fbdd82f23f2341baa21b66338462 authored by Matthias J. Kannwischer on 05 April 2020, 09:20:26 UTC, committed by Matthias J. Kannwischer on 05 April 2020, 09:20:26 UTC
make 4.3 changed the behaviour of '+=' in a backward-incompatible way.
(See https://lwn.net/Articles/810071/)
This broke the libopencm3 build and got fixed in
https://github.com/libopencm3/libopencm3/commit/72274d3caf09a5b4a6646e65bf376c91b8fa2ef1
1 parent 7e7703c
Raw File
Tip revision: 20f1dffccac5fbdd82f23f2341baa21b66338462 authored by Matthias J. Kannwischer on 05 April 2020, 09:20:26 UTC
Update libopencm3 to fix build with make >= 4.3
Tip revision: 20f1dff
convert_benchmarks.py
#!/usr/bin/env python3
import sys
from mupq import mupq
    
def usage():  
    print("Usage: python3 convert_benchmarks.py csv|md")
    sys.exit(1) 
 
if __name__ == "__main__":
    if len(sys.argv) != 2:
        usage()
    if sys.argv[1] == "csv": 
        converter = mupq.CsvConverter()
    elif sys.argv[1] == "md":
        converter = mupq.MarkdownConverter()
    else:
        usage()
    converter.convert()
back to top