Merge pull request #1562 from SChernykh/dev

Fixed 32-bit compilation
This commit is contained in:
xmrig 2020-02-21 22:09:21 +07:00 committed by GitHub
commit 12081e4f5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,7 @@ namespace randomx {
JitCompilerFallback() { JitCompilerFallback() {
throw std::runtime_error("JIT compilation is not supported on this platform"); throw std::runtime_error("JIT compilation is not supported on this platform");
} }
void prepare() {}
void generateProgram(Program&, ProgramConfiguration&, uint32_t) { void generateProgram(Program&, ProgramConfiguration&, uint32_t) {
} }