From 027d147c33a9640852220bc3ead4ca6bed68de58 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Wed, 3 Jan 2024 21:51:47 +0100 Subject: [PATCH] chore: test flags for ghdl to compile --- run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.py b/run.py index e5da68c..a195f21 100644 --- a/run.py +++ b/run.py @@ -23,5 +23,7 @@ i2c_lib = vu.add_library('i2c') i2c_lib.add_source_files(Path(__file__).parent / 'src/**/*.vhd') vu.add_compile_option('nvc.a_flags', ['--relaxed']) +vu.add_compile_option('ghdl.a_flags', ['-frelaxed']) +vu.set_sim_option('ghdl.elab_flags', ['-frelaxed']) vu.main() -- 2.48.1