Fix compile errors under Fedora 9, GCC 4.3.0.

git-svn-id: file://localhost/svn/verilator/trunk/verilator@1068 77ca24e4-aefa-0310-84f0-b9a241c72d87
This commit is contained in:
Wilson Snyder 2008-05-28 19:58:18 +00:00
parent 96608fb18d
commit d6e9c72424
10 changed files with 20 additions and 7 deletions

View File

@ -3,6 +3,10 @@ Revision history for Verilator
The contributors that suggested a given feature are shown in []. [by ...]
indicates the contributor was also the author of the fix; Thanks!
* Verilator 3.66*
**** Fix compile errors under Fedora 9, GCC 4.3.0. [by Jeremy Bennett]
* Verilator 3.664 2008/05/08
**** Fix missing file in kit.

View File

@ -2202,7 +2202,10 @@ outputs. Now, the following should fail:
cd test_regress
t/t_BUG.pl
Finally, Mail the bug report to C<wsnyder@wsnyder.org>.
Finally, report the bug using the bug tracker at
L<http://www.veripool.org/verilator>. The bug will become publicly
visible; if this is unacceptable, mail the bug report to
C<wsnyder@wsnyder.org>.
=head1 HISTORY

View File

@ -32,6 +32,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include <cstring>
#include <algorithm>
#include <vector>

View File

@ -21,7 +21,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <cstring>
#include <set>
#include "V3Error.h"
#ifndef _V3ERROR_NO_GLOBAL_

View File

@ -33,6 +33,7 @@
#include "verilatedos.h"
#include <stdio.h>
#include <stdarg.h>
#include <cstring>
#include <unistd.h>
#include <map>
#include <algorithm>

View File

@ -24,6 +24,7 @@
#include <math.h>
#include <stdio.h>
#include <stdarg.h>
#include <cstring>
#include <algorithm>
#include "V3Number.h"

View File

@ -24,7 +24,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <ctype.h>
#include <cctype>
#include <cstring>
#include <dirent.h>
#include <unistd.h>
#include <set>

View File

@ -82,6 +82,7 @@
#include <sys/types.h>
#include <iostream>
#include <cstdlib>
#include <stdio.h>
using namespace std;

View File

@ -22,8 +22,9 @@
/* %option nodefault */
/* $Id$ */
#include <stdio.h>
#include <string.h>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include "V3Read.h"
#include "V3Number.h"
#include "y.tab.h"

View File

@ -22,9 +22,9 @@
%{
/* $Id$ */
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>
#include <cstdarg>
#include <string.h>
#include <cstring>
#include "V3Read.h"
#include "V3Ast.h"