forked from github/verilator
Add VM_C11 for future need of C++11
This commit is contained in:
parent
bf17bb4648
commit
9fdb026e95
@ -28,6 +28,7 @@ cache:
|
|||||||
before_install:
|
before_install:
|
||||||
# Perl modules needed for testing
|
# Perl modules needed for testing
|
||||||
# Not listing Bit::Vector as slow to install, and only skips one test
|
# Not listing Bit::Vector as slow to install, and only skips one test
|
||||||
|
- touch temp.cpp ; g++ -E -dM -c temp.cpp | sort ; rm -rf temp.cpp
|
||||||
- yes yes | sudo cpan -fi Unix::Processors Parallel::Forker
|
- yes yes | sudo cpan -fi Unix::Processors Parallel::Forker
|
||||||
- sudo apt-get install gdb gtkwave
|
- sudo apt-get install gdb gtkwave
|
||||||
- sudo apt-get install libgoogle-perftools-dev
|
- sudo apt-get install libgoogle-perftools-dev
|
||||||
|
@ -114,9 +114,16 @@ endif
|
|||||||
#######################################################################
|
#######################################################################
|
||||||
##### Threaded builds
|
##### Threaded builds
|
||||||
|
|
||||||
|
ifneq ($(VM_C11),0)
|
||||||
|
ifneq ($(VM_C11),)
|
||||||
|
VK_C11=1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(VM_THREADS),0)
|
ifneq ($(VM_THREADS),0)
|
||||||
ifneq ($(VM_THREADS),)
|
ifneq ($(VM_THREADS),)
|
||||||
CPPFLAGS += -DVL_THREADED
|
CPPFLAGS += -DVL_THREADED
|
||||||
|
VK_C11=1
|
||||||
VK_LIBS_THREADED=1
|
VK_LIBS_THREADED=1
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@ -124,14 +131,20 @@ endif
|
|||||||
ifneq ($(VM_TRACE_THREADED),0)
|
ifneq ($(VM_TRACE_THREADED),0)
|
||||||
ifneq ($(VM_TRACE_THREADED),)
|
ifneq ($(VM_TRACE_THREADED),)
|
||||||
CPPFLAGS += -DVL_TRACE_THREADED
|
CPPFLAGS += -DVL_TRACE_THREADED
|
||||||
|
VK_C11=1
|
||||||
VK_LIBS_THREADED=1
|
VK_LIBS_THREADED=1
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(VK_C11),0)
|
||||||
|
ifneq ($(VK_C11),)
|
||||||
|
# Need C++11 at least, so always default to newest
|
||||||
|
CPPFLAGS += $(CFG_CXXFLAGS_STD_NEWEST)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(VK_LIBS_THREADED),0)
|
ifneq ($(VK_LIBS_THREADED),0)
|
||||||
ifneq ($(VK_LIBS_THREADED),)
|
ifneq ($(VK_LIBS_THREADED),)
|
||||||
# Need C++11 at least, so always default to newest
|
|
||||||
CPPFLAGS += $(CFG_CXXFLAGS_STD_NEWEST)
|
|
||||||
LDLIBS += $(CFG_LDLIBS_THREADS)
|
LDLIBS += $(CFG_LDLIBS_THREADS)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -45,6 +45,8 @@ public:
|
|||||||
of.puts("# See "+v3Global.opt.prefix()+".mk"+" for the caller.\n");
|
of.puts("# See "+v3Global.opt.prefix()+".mk"+" for the caller.\n");
|
||||||
|
|
||||||
of.puts("\n### Switches...\n");
|
of.puts("\n### Switches...\n");
|
||||||
|
of.puts("# C11 constructs required? 0/1 (from --threads or use of classes)\n");
|
||||||
|
of.puts("VM_C11 = " + cvtToStr(v3Global.needC11() || v3Global.opt.threads()) + "\n");
|
||||||
of.puts("# Coverage output mode? 0/1 (from --coverage)\n");
|
of.puts("# Coverage output mode? 0/1 (from --coverage)\n");
|
||||||
of.puts("VM_COVERAGE = "); of.puts(v3Global.opt.coverage()?"1":"0"); of.puts("\n");
|
of.puts("VM_COVERAGE = "); of.puts(v3Global.opt.coverage()?"1":"0"); of.puts("\n");
|
||||||
of.puts("# Parallel builds? 0/1 (from --output-split)\n");
|
of.puts("# Parallel builds? 0/1 (from --output-split)\n");
|
||||||
|
@ -73,9 +73,10 @@ class V3Global {
|
|||||||
int m_debugFileNumber; // Number to append to debug files created
|
int m_debugFileNumber; // Number to append to debug files created
|
||||||
bool m_assertDTypesResolved; // Tree should have dtypep()'s
|
bool m_assertDTypesResolved; // Tree should have dtypep()'s
|
||||||
bool m_constRemoveXs; // Const needs to strip any Xs
|
bool m_constRemoveXs; // Const needs to strip any Xs
|
||||||
bool m_needTraceDumper; // Need __Vm_dumperp in symbols
|
bool m_needC11; // Need C++11
|
||||||
bool m_needHInlines; // Need __Inlines file
|
bool m_needHInlines; // Need __Inlines file
|
||||||
bool m_needHeavy; // Need verilated_heavy.h include
|
bool m_needHeavy; // Need verilated_heavy.h include
|
||||||
|
bool m_needTraceDumper; // Need __Vm_dumperp in symbols
|
||||||
bool m_dpi; // Need __Dpi include files
|
bool m_dpi; // Need __Dpi include files
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -89,9 +90,10 @@ public:
|
|||||||
m_widthMinUsage = VWidthMinUsage::LINT_WIDTH;
|
m_widthMinUsage = VWidthMinUsage::LINT_WIDTH;
|
||||||
m_assertDTypesResolved = false;
|
m_assertDTypesResolved = false;
|
||||||
m_constRemoveXs = false;
|
m_constRemoveXs = false;
|
||||||
m_needTraceDumper = false;
|
m_needC11 = false;
|
||||||
m_needHInlines = false;
|
m_needHInlines = false;
|
||||||
m_needHeavy = false;
|
m_needHeavy = false;
|
||||||
|
m_needTraceDumper = false;
|
||||||
m_dpi = false;
|
m_dpi = false;
|
||||||
m_rootp = NULL; // created by makeInitNetlist() so static constructors run first
|
m_rootp = NULL; // created by makeInitNetlist() so static constructors run first
|
||||||
}
|
}
|
||||||
@ -117,12 +119,14 @@ public:
|
|||||||
char digits[100]; sprintf(digits, "%03d", m_debugFileNumber);
|
char digits[100]; sprintf(digits, "%03d", m_debugFileNumber);
|
||||||
return opt.makeDir()+"/"+opt.prefix()+"_"+digits+"_"+nameComment;
|
return opt.makeDir()+"/"+opt.prefix()+"_"+digits+"_"+nameComment;
|
||||||
}
|
}
|
||||||
bool needTraceDumper() const { return m_needTraceDumper; }
|
bool needC11() const { return m_needC11; }
|
||||||
void needTraceDumper(bool flag) { m_needTraceDumper = flag; }
|
void needC11(bool flag) { m_needC11 = flag; }
|
||||||
bool needHInlines() const { return m_needHInlines; }
|
bool needHInlines() const { return m_needHInlines; }
|
||||||
void needHInlines(bool flag) { m_needHInlines = flag; }
|
void needHInlines(bool flag) { m_needHInlines = flag; }
|
||||||
bool needHeavy() const { return m_needHeavy; }
|
bool needHeavy() const { return m_needHeavy; }
|
||||||
void needHeavy(bool flag) { m_needHeavy = flag; }
|
void needHeavy(bool flag) { m_needHeavy = flag; }
|
||||||
|
bool needTraceDumper() const { return m_needTraceDumper; }
|
||||||
|
void needTraceDumper(bool flag) { m_needTraceDumper = flag; }
|
||||||
bool dpi() const { return m_dpi; }
|
bool dpi() const { return m_dpi; }
|
||||||
void dpi(bool flag) { m_dpi = flag; }
|
void dpi(bool flag) { m_dpi = flag; }
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user