abbba448ff
The current release is a considerable improvement over the previous stable release. It includes 20 months of fixes and language coverage improvements. For a complete history of changes, see the release notes for individual snapshots between the 0.7 and 0.8 releases found at ftp://ftp.icarus.com/pub/eda/verilog/snapshots/pre-0.8 A brief list of highlights: - Support for advanced standard data types such as real, - Lots more language support in general, - Kernel of an extensible, interactive debugger is new, - More complete support for user supplied system functions and tasks, including PLI system functions with various return value types, - Better standards compliance for core system tasks and functions in general, including some Verilog 2001 file I/O support, and - Performance improvements in general.
22 lines
710 B
Text
22 lines
710 B
Text
$NetBSD: patch-ad,v 1.7 2004/10/14 22:29:04 dmcmahill Exp $
|
|
|
|
--- Makefile.in.orig 2003-06-25 03:48:39.000000000 +0200
|
|
+++ Makefile.in 2003-07-12 19:11:41.000000000 +0200
|
|
@@ -170,7 +170,17 @@
|
|
|
|
lexor.o: lexor.cc parse.h
|
|
|
|
+# work around buggy compilers when compiling the parser with optimization
|
|
+# make sure no one sneaks a -O* in on us via one of these variables
|
|
+# set in the environment
|
|
+CXX_NOOPT=$(CXX:-O%=)
|
|
+CPPFLAGS_NOOPT=$(CPPFLAGS:-O%=)
|
|
+CXXFLAGS_NOOPT=$(CXXFLAGS:-O%=)
|
|
+
|
|
parse.o: parse.cc
|
|
+ @[ -d dep ] || mkdir dep
|
|
+ $(CXX_NOOPT) $(CPPFLAGS_NOOPT) $(CXXFLAGS_NOOPT) -MD -c $< -o $*.o
|
|
+ mv $*.d dep/$*.d
|
|
|
|
parse.cc: $(srcdir)/parse.y
|
|
$(YACC) --verbose -t -p VL -d -o parse.cc $(srcdir)/parse.y
|