Lines Matching +full:- +full:g

59         print("--------------",file=err)
86 parser.add_argument('-c', nargs='?',type = str, default="M55",help="M55/M4/M0")
87 parser.add_argument('-p', nargs='?',type = str, default="VHT",help="VHT/MPS3")
88 parser.add_argument('-a', action='store_true', help="Generate allocator definitions")
89 parser.add_argument('-i', action='store_true', help="Refresh global allocator index")
90 parser.add_argument('-b', action='store_true', help="Only benchmarks")
91 parser.add_argument('-d', action='store_true', help="Dry run")
92 parser.add_argument('-g', nargs='?',type = str, default="AC6",help="AC6 / CLANG / GCC")
93 parser.add_argument('-u', nargs='?',type = str, default="L85986697A",help="Debug UUID")
94 parser.add_argument('-t', action='store_true', help="Enable test mode")
95 parser.add_argument('-avh', nargs='?',type = str, default="C:/Keil_v5/ARM/avh-fvp/bin/models", help…
116 "M55": "Corstone-300",
117 "Corstone-300": "Corstone-300",
123 if args.g == "AC6":
126 if args.g == "GCC":
129 if args.g == "CLANG":
132 print(f"Compiler {args.g} not known")
136 return(f"{args.p}-{NAME_TO_BOARD[args.c]}")
139 # cbuild -O cprj test.csolution.yml -r --toolchain AC6 -c test.Release+MPS3-Corstone-300
140 toolchain = args.g
143 command = ["-O", "cprj",
145 "--toolchain", toolchain,
146 "-c", target]
152 if args.g == "AC6":
157 fvpWin = {"M55":"FVP_Corstone_SSE-300_Ethos-U55.exe",
158 "M4":"FVP_MPS2_Cortex-M4.exe",
159 "M0":"FVP_MPS2_Cortex-M0plus.exe"}
161 fvpUnix = {"M55":"FVP_Corstone_SSE-300_Ethos-U55",
162 "M4":"FVP_MPS2_Cortex-M4",
163 "M0":"FVP_MPS2_Cortex-M0plus"}
254 res = run(["cbuild"] + cmd_args() + ["-r","--update-rte"],timeout=600,printCmd=True)
331 res=run([avh,"-f",config,"-a",exe],printCmd=True)