1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

STAT: Update statistic for RISCV.

This commit is contained in:
winlin 2022-09-19 10:55:50 +08:00
parent e63c02e928
commit b95734fb09

View file

@ -46,6 +46,8 @@ void srs_build_features(stringstream& ss)
ss << "&x86=1"; ss << "&x86=1";
#elif defined(__arm__) || defined(__aarch64__) #elif defined(__arm__) || defined(__aarch64__)
ss << "&arm=1"; ss << "&arm=1";
#elif defined(__riscv)
ss << "&riscv=1";
#elif defined(__mips__) #elif defined(__mips__)
ss << "&mips=1"; ss << "&mips=1";
#elif defined(__loongarch__) #elif defined(__loongarch__)