version.cc:206:24: error: expected ‘;’ before ‘out’
206 | out << "RISC-V"
| ^
| ;
......
212 | out << std::endl;
| ~~~
make[3]: *** [Makefile:1700: exult-version.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/<<PKGBUILDDIR>>'
make[2]: *** [Makefile:1725: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:914: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j4 returned exit code 2
make: *** [debian/rules:8: build-arch] Error 255
dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit status 2version.cc from``` out << "RISC-V" ``` to``` out << "RISC-V"; ```. l have tested this solution on local,and it works well.Please let me know wheather the solution can be accepted. The patch is in the attachment.Attachment:
fix_build_failure_on_riscv.patch
Description: Binary data