[logo] 
 
Home
News
Activity
About/Contact
Major Tools
  Dinotrace
  Verilator
  Verilog-mode
  Verilog-Perl
Other Tools
  BugVise
  CovVise
  Force-Gate-Sim
  Gspice
  IPC::Locker
  Rsvn
  SVN::S4
  SystemPerl
  Voneline
  WFH
General Info
  Papers

CompilationFixes.patch

R. Diez, 10/04/2011 07:59 am

Download (3.3 kB)

b/src/V3Ast.cpp
19 19
//
20 20
//*************************************************************************
21 21

22
#include <string.h>  // For strncmp()
22 23
#include <cstdio>
23 24
#include <cstdarg>
24 25
#include <fstream>
b/src/V3Begin.cpp
35 35
#include <cstdio>
36 36
#include <cstdarg>
37 37
#include <unistd.h>
38
#include <string.h>  // For strlen()
38 39
#include <algorithm>
39 40
#include <vector>
40 41

  
b/src/V3EmitCSyms.cpp
24 24
#include <cstdio>
25 25
#include <cstdarg>
26 26
#include <unistd.h>
27
#include <string.h>  // For strlen()
27 28
#include <cmath>
28 29
#include <map>
29 30
#include <set>
b/src/V3Error.h
24 24
#define _V3ERROR_H_ 1
25 25
#include "config_build.h"
26 26
#include "verilatedos.h"
27
#include <stdlib.h>  // For abort().
27 28
#include <string>
28 29
#include <iostream>
29 30
#include <sstream>
30 31
#include <bitset>
31 32

  
33
using namespace std;
34

  
32 35
//######################################################################
33 36

  
34 37
class V3ErrorCode {
b/src/V3File.cpp
25 25
#include <sys/stat.h>
26 26
#include <sys/types.h>
27 27
#include <unistd.h>
28
#include <string.h>  // For strerror()
28 29
#include <cerrno>
29 30
#include <fcntl.h>
30 31
#include <iomanip>
b/src/V3Global.h
26 26
#include "config_build.h"
27 27
#include "verilatedos.h"
28 28
#include <string>
29
#include <stdio.h>  // For sprintf().
29 30

  
30 31
#include "V3Error.h"
31 32
#include "V3Options.h"
b/src/V3LinkDot.cpp
34 34
#include <cstdio>
35 35
#include <cstdarg>
36 36
#include <unistd.h>
37
#include <string.h>  // For strlen()
37 38
#include <map>
38 39
#include <algorithm>
39 40
#include <vector>
b/src/V3Number.cpp
21 21

22 22
#include "config_build.h"
23 23
#include "verilatedos.h"
24
#include <string.h>  // For strlen()
24 25
#include <cmath>
25 26
#include <cstdio>
26 27
#include <cstdarg>
b/src/V3Options.cpp
23 23
#include "verilatedos.h"
24 24
#include <sys/types.h>
25 25
#include <sys/stat.h>
26
#include <string.h>  // For strcasecmp()
26 27
#ifndef _WIN32
27 28
# include <sys/utsname.h>
28 29
#endif
b/src/V3ParseImp.cpp
29 29

30 30
#include "config_build.h"
31 31
#include "verilatedos.h"
32
#include <string.h>
32 33
#include <cstdio>
33 34
#include <cstdarg>
34 35
#include <unistd.h>
b/src/V3Width.cpp
66 66
#include <cstdio>
67 67
#include <cstdarg>
68 68
#include <unistd.h>
69
#include <string.h>
69 70

  
70 71
#include "V3Global.h"
71 72
#include "V3Width.h"