We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca66a7c commit 43f3287Copy full SHA for 43f3287
src/engine/script.cpp
@@ -105,6 +105,7 @@ std::shared_ptr<Thread> Script::start()
105
std::shared_ptr<Thread> Script::start(Target *target)
106
{
107
auto thread = std::make_shared<Thread>(target, impl->engine, this);
108
+#ifndef USE_LLVM
109
VirtualMachine *vm = thread->vm();
110
vm->setBytecode(impl->bytecode);
111
vm->setProcedures(impl->procedures);
@@ -161,6 +162,7 @@ std::shared_ptr<Thread> Script::start(Target *target)
161
162
vm->setVariables(impl->variableValues.data());
163
vm->setLists(impl->lists.data());
164
}
165
+#endif
166
167
return thread;
168
0 commit comments