Allow redefining VL_PRINTF, bug1598.

This commit is contained in:
Wilson Snyder 2019-12-03 19:12:18 -05:00
parent 96f8bbd023
commit fe684e8733
4 changed files with 10 additions and 1 deletions

View File

@ -14,6 +14,7 @@ Howard Su
Iztok Jeras
Jeremy Bennett
John Coiner
Julien Margetts
Kanad Kanhere
Kevin Kiningham
Lukasz Dalek

View File

@ -44,6 +44,11 @@
# include <thread>
#endif
// Allow user to specify their own include file
#ifdef VL_VERILATED_INCLUDE
# include VL_VERILATED_INCLUDE
#endif
//=============================================================================
// Switches

View File

@ -48,7 +48,6 @@ VK_CPPFLAGS_ALWAYS += \
-MMD \
-I$(VERILATOR_ROOT)/include \
-I$(VERILATOR_ROOT)/include/vltstd \
-DVL_PRINTF=printf \
-DVM_COVERAGE=$(VM_COVERAGE) \
-DVM_SC=$(VM_SC) \
-DVM_TRACE=$(VM_TRACE) \

View File

@ -35,6 +35,10 @@ extern "C" {
}
#endif
#ifndef VL_PRINTF
# define VL_PRINTF printf
#endif
//======================================================================
void dpii_display_call(const char* c) {