Skip to content

Commit

Permalink
For #2689: Support stat for CPU archs.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Oct 24, 2021
1 parent 592d496 commit 5783c44
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions trunk/src/app/srs_app_latest_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ void srs_build_features(stringstream& ss)
ss << "&os=linux";
}

#if defined(__amd64__) && defined(__x86_64__) && defined(__i386__)
ss << "&x86=1";
#elif defined(__arm__) && defined(__aarch64__)
ss << "&arm=1";
#elif defined(__mips__)
ss << "&mips=1";
#endif

SRS_CHECK_FEATURE2(_srs_in_docker, "docker", ss);
SRS_CHECK_FEATURE3(!string(SRS_PACKAGER).empty(), "packager", SRS_PACKAGER, ss);
SRS_CHECK_FEATURE2(SRS_CROSSBUILD_BOOL, "cross", ss);
Expand Down
2 changes: 1 addition & 1 deletion trunk/src/core/srs_core_version4.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

#define VERSION_MAJOR 4
#define VERSION_MINOR 0
#define VERSION_REVISION 183
#define VERSION_REVISION 184

#endif

0 comments on commit 5783c44

Please sign in to comment.