From fe7b4b4fcbff595135a177b92924e3b597f9ca8f Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Wed, 13 Mar 2024 05:53:35 +0100 Subject: [PATCH] Stub the bxInstrument_c class too (#281) The instrument stub needs this, otherwise ./configure --enable-instrumentation && make fails because bxInstrument_c isn't declared. Signed-off-by: Stephen Kitt --- bochs/instrument/stubs/instrument.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bochs/instrument/stubs/instrument.cc b/bochs/instrument/stubs/instrument.cc index ccdd002cf..e36556b88 100644 --- a/bochs/instrument/stubs/instrument.cc +++ b/bochs/instrument/stubs/instrument.cc @@ -24,6 +24,8 @@ #if BX_INSTRUMENTATION +class bxInstruction_c; + void bx_instr_init_env(void) {} void bx_instr_exit_env(void) {}