Error while deploying to Galaxy

My app runs fine locally but when I try deploying to Galaxy, I get the following error:

2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:763:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::Error, "yield() called with no fiber running");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:10:85: error: 'NewLatin1String' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:763:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::Error, "yield() called with no fiber running");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:10:139: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:763:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::Error, "yield() called with no fiber running");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:769:24: error: 'ThrowException' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::ThrowException(that.isolate, uni::Deref(that.isolate, that.zombie_exception)), args);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:769:58: error: 'Deref' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::ThrowException(that.isolate, uni::Deref(that.isolate, that.zombie_exception)), args);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:769:112: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::ThrowException(that.isolate, uni::Deref(that.isolate, that.zombie_exception)), args);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:771:74: error: no matching function for call to 'Reset(v8::Isolate*&, v8::Persistent<v8::Value>&, v8::Local<v8::Primitive>)'
v0583
2020-02-11 22:15:05-05:00 uni::Reset<Value>(that.isolate, that.yielded, Undefined(that.isolate));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:771:74: note: candidate is:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template<class T> void uni::Reset(v8::Isolate*, v8::Persistent<T, v8::NonCopyablePersistentTraits<T> >&, int)
v0583
2020-02-11 22:15:05-05:00 void Reset(Isolate* isolate, Persistent<T>& persistent, Handle<T> handle) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template argument deduction/substitution failed:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:771:74: note: cannot convert 'v8::Undefined(that.Fiber::isolate)' (type 'v8::Local<v8::Primitive>') to type 'int'
v0583
2020-02-11 22:15:05-05:00 uni::Reset<Value>(that.isolate, that.yielded, Undefined(that.isolate));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:773:51: error: no matching function for call to 'Reset(v8::Isolate*&, v8::Persistent<v8::Value>&, v8::Local<v8::Value>)'
v0583
2020-02-11 22:15:05-05:00 uni::Reset(that.isolate, that.yielded, args[0]);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:773:51: note: candidate is:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template<class T> void uni::Reset(v8::Isolate*, v8::Persistent<T, v8::NonCopyablePersistentTraits<T> >&, int)
v0583
2020-02-11 22:15:05-05:00 void Reset(Isolate* isolate, Persistent<T>& persistent, Handle<T> handle) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template argument deduction/substitution failed:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:773:51: note: cannot convert '(& args)->v8::FunctionCallbackInfo<T>::operator[]<v8::Value>(0)' (type 'v8::Local<v8::Value>') to type 'int'
v0583
2020-02-11 22:15:05-05:00 uni::Reset(that.isolate, that.yielded, args[0]);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:10:40: error: 'ThrowException' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:775:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::TypeError, "yield() expects 1 or no arguments");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:10:85: error: 'NewLatin1String' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:775:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::TypeError, "yield() expects 1 or no arguments");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:10:139: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 #define THROW(x, m) return uni::Return(uni::ThrowException(Isolate::GetCurrent(), x(uni::NewLatin1String(Isolate::GetCurrent(), m))), args)
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:775:5: note: in expansion of macro 'THROW'
v0583
2020-02-11 22:15:05-05:00 THROW(Exception::TypeError, "yield() expects 1 or no arguments");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:798:28: error: 'class Fiber' has no member named 'ReturnYielded'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(that.ReturnYielded(), args);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:798:49: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(that.ReturnYielded(), args);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static uni::FunctionType Fiber::GetStarted(v8::Local<v8::String>, const GetterCallbackInfo&)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:806:24: error: 'Undefined' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::Undefined(Isolate::GetCurrent()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:806:24: note: suggested alternatives:
v0583
2020-02-11 22:15:05-05:00In file included from /root/.cache/node-gyp/12.14.0/include/node/node.h:63:0,
v0583
2020-02-11 22:15:05-05:00 from ../src/coroutine.h:1,
v0583
2020-02-11 22:15:05-05:00 from ../src/fibers.cc:1:
v0583
2020-02-11 22:15:05-05:00/root/.cache/node-gyp/12.14.0/include/node/v8.h:301:27: note: 'v8::Undefined'
v0583
2020-02-11 22:15:05-05:00 friend Local<Primitive> Undefined(Isolate* isolate);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00/root/.cache/node-gyp/12.14.0/include/node/v8.h:301:27: note: 'v8::Undefined'
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:806:67: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::Undefined(Isolate::GetCurrent()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:808:36: error: no match for call to '(Fiber) (v8::Local<v8::Object>)'
v0583
2020-02-11 22:15:05-05:00 Fiber& that = Unwrap(info.This());
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:809:23: error: 'NewBoolean' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewBoolean(that.isolate, that.started), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:809:72: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewBoolean(that.isolate, that.started), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static uni::FunctionType Fiber::GetCurrent(v8::Local<v8::String>, const GetterCallbackInfo&)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:816:24: error: 'Undefined' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::Undefined(Isolate::GetCurrent()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:816:24: note: suggested alternatives:
v0583
2020-02-11 22:15:05-05:00In file included from /root/.cache/node-gyp/12.14.0/include/node/node.h:63:0,
v0583
2020-02-11 22:15:05-05:00 from ../src/coroutine.h:1,
v0583
2020-02-11 22:15:05-05:00 from ../src/fibers.cc:1:
v0583
2020-02-11 22:15:05-05:00/root/.cache/node-gyp/12.14.0/include/node/v8.h:301:27: note: 'v8::Undefined'
v0583
2020-02-11 22:15:05-05:00 friend Local<Primitive> Undefined(Isolate* isolate);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00/root/.cache/node-gyp/12.14.0/include/node/v8.h:301:27: note: 'v8::Undefined'
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:816:67: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::Undefined(Isolate::GetCurrent()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static uni::FunctionType Fiber::GetPoolSize(v8::Local<v8::String>, const GetterCallbackInfo&)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:824:23: error: 'NewNumber' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewNumber(Isolate::GetCurrent(), Coroutine::pool_size), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:824:88: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewNumber(Isolate::GetCurrent(), Coroutine::pool_size), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static void Fiber::SetPoolSize(v8::Local<v8::String>, v8::Local<v8::Value>, const SetterCallbackInfo&)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:828:27: error: 'ToNumber' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 Coroutine::pool_size = uni::ToNumber(value)->Value();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static uni::FunctionType Fiber::GetFibersCreated(v8::Local<v8::String>, const GetterCallbackInfo&)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:835:23: error: 'NewNumber' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewNumber(Isolate::GetCurrent(), Coroutine::coroutines_created()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:835:99: error: return-statement with a value, in function returning 'void' [-fpermissive]
v0583
2020-02-11 22:15:05-05:00 return uni::Return(uni::NewNumber(Isolate::GetCurrent(), Coroutine::coroutines_created()), info);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In static member function 'static void Fiber::Init(int)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:853:4: error: 'Handle' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<FunctionTemplate> tmpl = uni::NewFunctionTemplate(isolate, New);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:853:27: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<FunctionTemplate> tmpl = uni::NewFunctionTemplate(isolate, New);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:853:36: error: 'NewFunctionTemplate' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 Handle<FunctionTemplate> tmpl = uni::NewFunctionTemplate(isolate, New);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:854:41: error: no matching function for call to 'Reset(v8::Isolate*&, v8::Persistent<v8::FunctionTemplate>&, v8::Persistent<v8::FunctionTemplate>&)'
v0583
2020-02-11 22:15:05-05:00 uni::Reset(isolate, Fiber::tmpl, tmpl);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:854:41: note: candidate is:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template<class T> void uni::Reset(v8::Isolate*, v8::Persistent<T, v8::NonCopyablePersistentTraits<T> >&, int)
v0583
2020-02-11 22:15:05-05:00 void Reset(Isolate* isolate, Persistent<T>& persistent, Handle<T> handle) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:149:7: note: template argument deduction/substitution failed:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:854:41: note: cannot convert 'Fiber::tmpl' (type 'v8::Persistent<v8::FunctionTemplate>') to type 'int'
v0583
2020-02-11 22:15:05-05:00 uni::Reset(isolate, Fiber::tmpl, tmpl);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:855:8: error: base operand of '->' has non-pointer type 'v8::Persistent<v8::FunctionTemplate>'
v0583
2020-02-11 22:15:05-05:00 tmpl->SetClassName(uni::NewLatin1Symbol(isolate, "Fiber"));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:855:23: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 tmpl->SetClassName(uni::NewLatin1Symbol(isolate, "Fiber"));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:859:20: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<Signature> sig = uni::NewSignature(isolate, tmpl);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:859:22: error: 'sig' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<Signature> sig = uni::NewSignature(isolate, tmpl);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:859:28: error: 'NewSignature' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 Handle<Signature> sig = uni::NewSignature(isolate, tmpl);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:860:8: error: base operand of '->' has non-pointer type 'v8::Persistent<v8::FunctionTemplate>'
v0583
2020-02-11 22:15:05-05:00 tmpl->InstanceTemplate()->SetInternalFieldCount(1);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:863:25: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<ObjectTemplate> proto = tmpl->PrototypeTemplate();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:863:27: error: 'proto' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<ObjectTemplate> proto = tmpl->PrototypeTemplate();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:863:39: error: base operand of '->' has non-pointer type 'v8::Persistent<v8::FunctionTemplate>'
v0583
2020-02-11 22:15:05-05:00 Handle<ObjectTemplate> proto = tmpl->PrototypeTemplate();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:864:15: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 proto->Set(uni::NewLatin1Symbol(isolate, "reset"),
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:865:5: error: 'NewFunctionTemplate' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Reset, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:865:58: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Reset, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:865:60: error: expected primary-expression before ')' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Reset, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:866:15: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 proto->Set(uni::NewLatin1Symbol(isolate, "run"),
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:867:5: error: 'NewFunctionTemplate' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Run, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:867:56: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Run, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:867:58: error: expected primary-expression before ')' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, Run, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:868:15: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 proto->Set(uni::NewLatin1Symbol(isolate, "throwInto"),
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:869:5: error: 'NewFunctionTemplate' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, ThrowInto, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:869:62: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, ThrowInto, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:869:64: error: expected primary-expression before ')' token
v0583
2020-02-11 22:15:05-05:00 uni::NewFunctionTemplate(isolate, ThrowInto, Handle<Value>(), sig));
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:870:23: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 proto->SetAccessor(uni::NewLatin1Symbol(isolate, "started"), GetStarted);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:873:19: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<Function> yield = uni::NewFunctionTemplate(isolate, Yield_)->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:873:21: error: 'yield' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<Function> yield = uni::NewFunctionTemplate(isolate, Yield_)->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:873:29: error: 'NewFunctionTemplate' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 Handle<Function> yield = uni::NewFunctionTemplate(isolate, Yield_)->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:874:17: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<String> sym_yield = uni::NewLatin1Symbol(isolate, "yield");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:874:19: error: 'sym_yield' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<String> sym_yield = uni::NewLatin1Symbol(isolate, "yield");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:874:31: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 Handle<String> sym_yield = uni::NewLatin1Symbol(isolate, "yield");
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:875:4: error: 'target' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 target->Set(sym_yield, yield);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:878:19: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 Handle<Function> fn = tmpl->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:878:21: error: 'fn' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 Handle<Function> fn = tmpl->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:878:30: error: base operand of '->' has non-pointer type 'v8::Persistent<v8::FunctionTemplate>'
v0583
2020-02-11 22:15:05-05:00 Handle<Function> fn = tmpl->GetFunction();
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:880:34: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::SetAccessor(isolate, fn, uni::NewLatin1Symbol(isolate, "current"), GetCurrent);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:881:34: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::SetAccessor(isolate, fn, uni::NewLatin1Symbol(isolate, "poolSize"), GetPoolSize, SetPoolSize);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:882:34: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 uni::SetAccessor(isolate, fn, uni::NewLatin1Symbol(isolate, "fibersCreated"), GetFibersCreated);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:885:16: error: 'NewLatin1Symbol' is not a member of 'uni'
v0583
2020-02-11 22:15:05-05:00 target->Set(uni::NewLatin1Symbol(isolate, "Fiber"), fn);
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: At global scope:
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:901:11: error: variable or field 'init' declared void
v0583
2020-02-11 22:15:05-05:00 void init(Handle<Object> target) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:901:11: error: 'Handle' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:901:24: error: expected primary-expression before '>' token
v0583
2020-02-11 22:15:05-05:00 void init(Handle<Object> target) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:901:26: error: 'target' was not declared in this scope
v0583
2020-02-11 22:15:05-05:00 void init(Handle<Object> target) {
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc: In function 'v8::Local<v8::Value> uni::GetStackTrace(uni::TryCatch*, int)':
v0583
2020-02-11 22:15:05-05:00../src/fibers.cc:116:2: warning: control reaches end of non-void function [-Wreturn-type]
v0583
2020-02-11 22:15:05-05:00 }
v0583
2020-02-11 22:15:05-05:00 ^
v0583
2020-02-11 22:15:05-05:00make: *** [Release/obj.target/fibers/src/fibers.o] Error 1
v0583
2020-02-11 22:15:05-05:00make: Leaving directory `/app/bundle/programs/server/npm/node_modules/fibers/build'
v0583
2020-02-11 22:15:05-05:00gyp ERR! build error
v0583
2020-02-11 22:15:05-05:00gyp ERR! stack Error: `make` failed with exit code: 2
v0583
2020-02-11 22:15:05-05:00gyp ERR! stack at ChildProcess.onExit (/node-v12.14.0-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
v0583
2020-02-11 22:15:05-05:00gyp ERR! stack at ChildProcess.emit (events.js:210:5)
v0583
2020-02-11 22:15:05-05:00gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
v0583
2020-02-11 22:15:05-05:00gyp ERR! System Linux 4.4.0-1095-aws
v0583
2020-02-11 22:15:05-05:00gyp ERR! command "/node-v12.14.0-linux-x64/bin/node" "/node-v12.14.0-linux-x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release"
v0583
2020-02-11 22:15:05-05:00gyp ERR! cwd /app/bundle/programs/server/npm/node_modules/fibers
v0583
2020-02-11 22:15:05-05:00gyp ERR! node -v v12.14.0
v0583
2020-02-11 22:15:05-05:00gyp ERR! node-gyp -v v5.0.5
v0583
2020-02-11 22:15:05-05:00gyp ERR! not ok
v0583
2020-02-11 22:15:05-05:00node-gyp exited with code: 1
v0583
2020-02-11 22:15:05-05:00Please make sure you are using a supported platform and node version. If you
v0583
2020-02-11 22:15:05-05:00would like to compile fibers on this machine please make sure you have setup your
v0583
2020-02-11 22:15:05-05:00build environment--
v0583
2020-02-11 22:15:05-05:00Windows + OS X instructions here: https://github.com/nodejs/node-gyp
v0583
2020-02-11 22:15:05-05:00Ubuntu users please run: `sudo apt-get install g++ build-essential`
v0583
2020-02-11 22:15:05-05:00RHEL users please run: `yum install gcc-c++` and `yum groupinstall 'Development Tools'`
v0583
2020-02-11 22:15:05-05:00Alpine users please run: `sudo apk add python make g++`
v0583
2020-02-11 22:15:05-05:00sh: 1: nodejs: not found
v0583
2020-02-11 22:15:05-05:00npm ERR! code ELIFECYCLE
v0583
2020-02-11 22:15:05-05:00npm ERR! syscall spawn
v0583
2020-02-11 22:15:05-05:00npm ERR! file sh
v0583
2020-02-11 22:15:05-05:00npm ERR! errno ENOENT
v0583
2020-02-11 22:15:05-05:00npm ERR! fibers@3.1.1 install: `node build.js || nodejs build.js`
v0583
2020-02-11 22:15:05-05:00npm ERR! spawn ENOENT
v0583
2020-02-11 22:15:05-05:00npm ERR!
v0583
2020-02-11 22:15:05-05:00npm ERR! Failed at the fibers@3.1.1 install script.
v0583
2020-02-11 22:15:05-05:00npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
v0583
2020-02-11 22:15:05-05:00
v0583
2020-02-11 22:15:05-05:00npm ERR! A complete log of this run can be found in:
v0583
2020-02-11 22:15:05-05:00npm ERR! /root/.npm/_logs/2020-02-12T03_15_05_206Z-debug.log
v0583
2020-02-11 22:15:05-05:00npm ERR! code ELIFECYCLE
v0583
2020-02-11 22:15:05-05:00npm ERR! errno 1
v0583
2020-02-11 22:15:05-05:00npm ERR! meteor-dev-bundle@ install: `node npm-rebuild.js`
v0583
2020-02-11 22:15:05-05:00npm ERR! Exit status 1
v0583
2020-02-11 22:15:05-05:00npm ERR!
v0583
2020-02-11 22:15:05-05:00npm ERR! Failed at the meteor-dev-bundle@ install script.
v0583
2020-02-11 22:15:05-05:00npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
v0583
2020-02-11 22:15:05-05:00
v0583
2020-02-11 22:15:05-05:00npm ERR! A complete log of this run can be found in:
v0583
2020-02-11 22:15:05-05:00npm ERR! /root/.npm/_logs/2020-02-12T03_15_05_279Z-debug.log
v0583
2020-02-11 22:15:07-05:00Removing intermediate container f46ea79bda13
v0583
2020-02-11 22:15:07-05:00Failed to build version 583. Maximum retries reached.

Try running locally with production flag to see if you can reproduce the issue locally that way.

Using the --production flag to run locally causes the app to be a complete white screen, producing this error in the console:

Uncaught Error: jQuery not found
    at e (2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:179)
    at g (2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:5)
    at d.n [as require] (2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:5)
    at e (2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:5)
    at 2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:179
    at 2f0a8eb14dba26eca1d71181ef3897913f38b98a.js?meteor_js_resource=true:179

I just manually installed JQuery via npm and it’s still throwing that error.

P.S. Prior to upgrading to Meteor 1.9, this wasn’t an issue.

What is the Atmosphere version of the jQuery package?

The Atmosphere version is: jquery@1.11.11

Try updating it to the latest version, which should force the npm version, but that might not be necessary the problem. Looks like some import is missing which is not a problem in dev, but can cause problems when prepping for production.