You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file included from /home/mike/Development/MISC/xdna-driver_main/xrt/src/runtime_src/tools/xclbinutil/R>
from /home/mike/Development/MISC/xdna-driver_main/xrt/src/runtime_src/tools/xclbinutil/R>
/usr/include/rapidjson/document.h: In member function 'rapidjson::GenericStringRef<CharType>& rapidjson::>
/usr/include/rapidjson/document.h:319:82: error: assignment of read-only member 'rapidjson::GenericString>
319 | GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
I received an error building xrt with gcc-14:
This issue is also described in (several) bug reports as an issue with rapidjson 1.1.0 (the current release, although very old):
https://www.mail-archive.com/[email protected]/msg196747.html
https://bugs.gentoo.org/919374
The solution is to either patch 1.1.0 with a more recent commit:
https://github.com/Tencent/rapidjson/commit/3b2441b8.patch
... or pull rapidjson from git upstream (which is what I did to resolve after disabling the build tests):
Now all of the XDNA components (linux kernel, xrt, xrt-xdna) successfully build with gcc-14.
Thanks @maxzhen and @sonals for your help.
Cheers,
Michael
The text was updated successfully, but these errors were encountered: