From 30b6cf78214faeef93ac451e0d42b0e975830766 Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 24 Sep 2002 01:50:53 +0000 Subject: [PATCH] Include user specified libraries on the link line. --- iverilog-vpi.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iverilog-vpi.sh b/iverilog-vpi.sh index 61d6354f3..6934fec97 100644 --- a/iverilog-vpi.sh +++ b/iverilog-vpi.sh @@ -17,7 +17,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: iverilog-vpi.sh,v 1.7 2002/09/18 23:25:18 steve Exp $" +#ident "$Id: iverilog-vpi.sh,v 1.8 2002/09/24 01:50:53 steve Exp $" # These are the variables used for compiling files CC=gcc @@ -113,4 +113,4 @@ then fi echo "Making $OUT from $OBJ..." -exec $LD -o $OUT $LDFLAGS $OBJ $LDLIBS +exec $LD -o $OUT $LDFLAGS $OBJ $LIB $LDLIBS