Quite a regular
Joined: 2021/12/20 2:52 Last Login
: Yesterday 23:43
From UK
Group:
Registered Users
|
@Maijestro @HunoPPC I am interested in this exact error. I am attempting a game port where I have the same error.
Since this is coming from HunoPPC I am surprised to see this error because I was always under the impression that he was using GCC 4 - but this must not be the case for this game.
This error happens due to GCC 8 and above. In that version, different threading methods were created such as "single" and "native". The whole point of building with the flag "athread=native" means that when you finally link your binary file, "gthr-native.o" (I cannot remember exactly the name of the object file) gets linked in and provides the selected threading implementation. This is never an issue with static linking. The issue comes when there is a binary that relies on something that requires those native methods and when they are linked dynamically. There is no such "gthr-native.so" file.
I am wondering if you found a work-around?
|