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

Fix #1547, support crossbuild for ARM/MIPS.

This commit is contained in:
winlin 2020-01-21 13:59:43 +08:00
parent 6af8e38017
commit 0df108740a
6 changed files with 73 additions and 30 deletions

View file

@ -251,6 +251,9 @@ void show_macro_features()
#if defined(__aarch64__)
ss << " aarch64";
#endif
#if defined(SRS_AUTO_CROSSBUILD)
ss << "(crossbuild)";
#endif
ss << ", conf:" << _srs_config->config() << ", limit:" << _srs_config->get_max_connections()
<< ", writev:" << sysconf(_SC_IOV_MAX) << ", encoding:" << (srs_is_little_endian()? "little-endian":"big-endian")