51cc1f3f79
WHAT'S NEW SINCE 0.5? Quite a lot. Innumerable bugs have been fixed, and standards coverage has been improved significantly. Warning and error messages have been improved, and so has compile performance. Gate delays, strength modeling, and floating point delays have all improved since the 0.5 release. If you had trouble with the 0.5 release, the 0.6 release probably fixes your problem. Support for large designs spanning multiple files has been improved dramatically. The usual preprocessor inclusion method still works, but The 0.6 release adds command files for keeping source file lists, and automatic library searches for missing modules. The library mechinisms are compatible with commercial tools, and commercial module libraries can be used with Icarus Verilog. Many compiler limitations related to the size and complexity of large designs have been relaxed or eliminated. There are no known design size limitations remaining in the compiler. Icarus Verilog should be able to handle any design that you have the patience to compile.
33 lines
915 B
Makefile
33 lines
915 B
Makefile
# $NetBSD: Makefile,v 1.12 2002/02/08 01:48:31 dmcmahill Exp $
|
|
#
|
|
|
|
DISTNAME= verilog-0.6
|
|
CATEGORIES= cad
|
|
MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v0.6/
|
|
|
|
MAINTAINER= dmcmahill@netbsd.org
|
|
HOMEPAGE= http://icarus.com/eda/verilog/index.html
|
|
COMMENT= Verilog simulation and synthesis tool (stable release version)
|
|
|
|
BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison
|
|
BUILD_DEPENDS+= gperf-2.7.2:../../devel/gperf
|
|
# turn this back on when ipal comes along a little further
|
|
#DEPENDS+= ipal-current>=20001210:../../cad/ipal-current
|
|
|
|
CONFLICTS+= verilog-current-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
#
|
|
# for ipal.h
|
|
#CPPFLAGS+= -I${LOCALBASE}/include
|
|
#CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS+="${LDFLAGS}"
|
|
CONFIGURE_ARGS+= --without-ipal
|
|
YACC= ${LOCALBASE}/bin/bison
|
|
|
|
test: build
|
|
cd ${WRKSRC} && \
|
|
${MAKE_ENV} ${MAKE_PROGRAM} check 2>&1 | \
|
|
tee ${WRKDIR}/tests.log
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|