Merge from master
This commit is contained in:
commit
8b245138ee
2
Changes
2
Changes
|
|
@ -29,6 +29,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
||||||
|
|
||||||
**** Fix to ignore Unicode UTF-8 BOM sequences, msg2576. [HyungKi Jeong]
|
**** Fix to ignore Unicode UTF-8 BOM sequences, msg2576. [HyungKi Jeong]
|
||||||
|
|
||||||
|
**** Fix std:: build error, bug1322.
|
||||||
|
|
||||||
|
|
||||||
* Verilator 3.924 2018-06-12
|
* Verilator 3.924 2018-06-12
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,10 @@
|
||||||
#define _V3GLOBAL_H_ 1
|
#define _V3GLOBAL_H_ 1
|
||||||
|
|
||||||
#include "config_build.h"
|
#include "config_build.h"
|
||||||
|
#ifndef HAVE_CONFIG_BUILD
|
||||||
|
# error "Something failed during ./configure as config_build.h is incomplete."
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "verilatedos.h"
|
#include "verilatedos.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,13 @@
|
||||||
//*************************************************************************
|
//*************************************************************************
|
||||||
|
|
||||||
// Cheat for speed and compile .cpp files into one object
|
// Cheat for speed and compile .cpp files into one object
|
||||||
|
#include "config_build.h"
|
||||||
|
#ifndef HAVE_CONFIG_BUILD
|
||||||
|
# error "Something failed during ./configure as config_build.h is incomplete."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "verilatedos.h"
|
||||||
|
|
||||||
#define _V3ERROR_NO_GLOBAL_ 1
|
#define _V3ERROR_NO_GLOBAL_ 1
|
||||||
#include "V3Error.cpp"
|
#include "V3Error.cpp"
|
||||||
#include "V3String.cpp"
|
#include "V3String.cpp"
|
||||||
|
|
|
||||||
|
|
@ -84,3 +84,7 @@ using std::make_pair;
|
||||||
//**** OS and compiler specifics
|
//**** OS and compiler specifics
|
||||||
|
|
||||||
#include "verilatedos.h"
|
#include "verilatedos.h"
|
||||||
|
|
||||||
|
//**********************************************************************
|
||||||
|
//**** This file sometimes gets truncated, so check in consumers
|
||||||
|
#define HAVE_CONFIG_BUILD
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue