1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-14 20:31:56 +00:00

add --x86-64 alias for --x86-x64.

This commit is contained in:
winlin 2015-09-22 13:52:14 +08:00
parent edead21a25
commit 8a6edac4e8
2 changed files with 4 additions and 0 deletions

View file

@ -184,6 +184,7 @@ Presets:
--fast-dev for dev fast compile, the RTMP server, without librtmp/utest/research.
--demo for srs demo, @see: https://github.com/simple-rtmp-server/srs/wiki/v1_CN_SampleDemo
--full enable all features, no gperf/gprof/arm.
--x86-64 alias for --x86-x64.
Conflicts:
1. --with-gmc vs --with-gmp:
@ -275,6 +276,7 @@ function parse_user_option() {
--log-trace) SRS_LOG_TRACE=YES ;;
--x86-x64) SRS_X86_X64=YES ;;
--x86-64) SRS_X86_X64=YES ;;
--osx) SRS_OSX=YES ;;
--arm) SRS_ARM_UBUNTU12=YES ;;
--mips) SRS_MIPS_UBUNTU12=YES ;;

View file

@ -35,6 +35,7 @@ do
--help) help=yes ;;
--x86-x64) X86_X64=YES ;;
--x86-64) X86_X64=YES ;;
--mips) MIPS=YES ;;
--arm) ARM=YES ;;
--pi) PI=YES ;;
@ -54,6 +55,7 @@ if [ $help = yes ]; then
--arm for arm cross-build platform, configure/make/package.
--mips for mips cross-build platform, configure/make/package.
--pi for pi platform, configure/make/package.
--x86-64 alias for --x86-x64.
END
exit 0
fi