|
From: Larry D. <ldo...@re...> - 2008-04-04 22:16:38
|
On Fri, Apr 04, 2008 at 03:00:35PM -0700, Cary R. wrote: > If you would like to see a -L option added to iverilog-vpi please add it > as a feature request here > (http://sourceforge.net/tracker/?group_id=149850&atid=776000). > > I agree it is odd that the shell script version of iverilog-vpi does not > complain about extra flags. The mingw version (executable) does complain > about extra options. Patch to Unix iverilog-vpi appended, for discussion. That only leaves the mingw version and the documentation. - Larry --- /home/ldoolitt/bin/iverilog-vpi 2008-04-04 10:35:34.000000000 -0700 +++ iverilog-vpi 2008-04-04 15:13:25.000000000 -0700 @@ -85,6 +85,9 @@ -D*) DEFS="$DEFS $parm" ;; + -L*) LDFLAGS="$LDFLAGS $parm" + ;; + --cflags) echo "$CFLAGS" exit; @@ -104,6 +107,9 @@ echo "/home/ldoolitt/lib/ivl" exit ;; + *) + echo "$0: warning: unhandled $parm" 1>&2 + ;; esac done |