From fc5ce3b5110ca1e840c3a8bb2db9711405cbd76d Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 9 Nov 2017 02:18:07 +0100 Subject: [PATCH] Allow the verilog program to be specified It should really work by default though. --- src/makefile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/makefile.c b/src/makefile.c index 818200d..f03c643 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -666,6 +666,8 @@ static void _targets_vflags(Configure * configure, FILE * fp) { String const * p; + if((p = config_get(configure->config, NULL, "verilog")) != NULL) + _makefile_output_variable(fp, "VERILOG", p); if((p = config_get(configure->config, NULL, "vflags_force")) != NULL) { _makefile_print(fp, "%s", "VFLAGSF=");