go-webrtc
go-webrtc copied to clipboard
No arm64/aarch64 support! How 2 support it?
Is there any plan to support arm64 linux?
Your best bet it to try running
GOOS=linux GOARCH=arm64 ./build.sh
go-webrtc may work with arm64, but nobody is testing or maintaining it and there are no precompiled webrtc libraries for that reason. You'll have to build the webrtc library yourself at this point.
thanks, And is there any plane to update libwebrtc to the latest version (M71/M72)?
I tried to update libwebrtc but got an cgo compile error undefined reference `rtc::FatalMessage::FatalMessage(char const*, int, std::string*)'
Discussion of a libwebrtc update should happen in a separate issue. Errors relating to std::string
probably mean an ABI mismatch. Search the commit history and other issues for _GLIBCXX_USE_CXX11_ABI
for some related discussion, but you will have to do the troubleshooting yourself.