Replies: 3 comments 4 replies
-
|
Hi! It is great to see such experimentation in the community. A Mingw build is not something we support or test, so such errors are not very surprising. For this specific error, adding the following code to #ifdef __GNUC__
namespace llvh::sys {
inline void MemoryFence() {
__sync_synchronize();
}
inline cas_flag CompareAndSwap(volatile cas_flag* ptr,
cas_flag new_value,
cas_flag old_value) {
return __sync_val_compare_and_swap(ptr, old_value, new_value);
}
}
#endifI am converting this to discussion, since Mingw is not officially supported. |
Beta Was this translation helpful? Give feedback.
-
|
Now there's another problem I can't figure out (several other errors have been solved). In which causes an error |
Beta Was this translation helpful? Give feedback.
-
|
A linking error has plagued me for long which I think might be the last error. May get the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm not sure if this is my fault. I tried to build Hermes in Msys2 environment on a PC, but I've got this error when building:
I've used the following commands as described:
Beta Was this translation helpful? Give feedback.
All reactions