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

For #1537, disable crossbuild for ARM/MIPS.

This commit is contained in:
winlin 2019-12-25 13:17:49 +08:00
parent e6e4bd7fb4
commit dffc96d2fe
7 changed files with 56 additions and 299 deletions

View file

@ -28,6 +28,7 @@
#include <errno.h>
#include <sstream>
#include <stdarg.h>
#include <unistd.h>
using namespace std;
bool srs_is_system_control_error(srs_error_t err)
@ -77,7 +78,7 @@ std::string SrsCplxError::description() {
next = this;
while (next) {
ss << "thread [" << next->cid << "]: "
ss << "thread [" << getpid() << "][" << next->cid << "]: "
<< next->func << "() [" << next->file << ":" << next->line << "]"
<< "[errno=" << next->rerrno << "]";