diff --git a/src/jit_compiler_a64.hpp b/src/jit_compiler_a64.hpp index 58aa25c..5a075bf 100644 --- a/src/jit_compiler_a64.hpp +++ b/src/jit_compiler_a64.hpp @@ -69,5 +69,8 @@ namespace randomx { size_t getCodeSize() { return 0; } + void enableWriting() {} + void enableExecution() {} + void enableAll() {} }; } \ No newline at end of file diff --git a/src/jit_compiler_fallback.hpp b/src/jit_compiler_fallback.hpp index 8103a63..56ccb8c 100644 --- a/src/jit_compiler_fallback.hpp +++ b/src/jit_compiler_fallback.hpp @@ -69,5 +69,8 @@ namespace randomx { size_t getCodeSize() { return 0; } + void enableWriting() {} + void enableExecution() {} + void enableAll() {} }; } \ No newline at end of file