From e9b87dae4219cd65bb4c9ac8f11b07392b3c6996 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 31 Oct 2019 19:29:54 +0100 Subject: [PATCH] sim: set opt_level to O0 (reduce compilation time) --- sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim.py b/sim.py index d33f30b..e790a6f 100755 --- a/sim.py +++ b/sim.py @@ -105,7 +105,7 @@ def main(): soc = USB3PIPESim() builder = Builder(soc, output_dir="build") - builder.build(sim_config=sim_config, trace=args.trace) + builder.build(sim_config=sim_config, trace=args.trace, opt_level="O0") if __name__ == "__main__":