mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
add --x86-64 alias for --x86-x64.
This commit is contained in:
parent
edead21a25
commit
8a6edac4e8
2 changed files with 4 additions and 0 deletions
|
@ -184,6 +184,7 @@ Presets:
|
||||||
--fast-dev for dev fast compile, the RTMP server, without librtmp/utest/research.
|
--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
|
--demo for srs demo, @see: https://github.com/simple-rtmp-server/srs/wiki/v1_CN_SampleDemo
|
||||||
--full enable all features, no gperf/gprof/arm.
|
--full enable all features, no gperf/gprof/arm.
|
||||||
|
--x86-64 alias for --x86-x64.
|
||||||
|
|
||||||
Conflicts:
|
Conflicts:
|
||||||
1. --with-gmc vs --with-gmp:
|
1. --with-gmc vs --with-gmp:
|
||||||
|
@ -275,6 +276,7 @@ function parse_user_option() {
|
||||||
--log-trace) SRS_LOG_TRACE=YES ;;
|
--log-trace) SRS_LOG_TRACE=YES ;;
|
||||||
|
|
||||||
--x86-x64) SRS_X86_X64=YES ;;
|
--x86-x64) SRS_X86_X64=YES ;;
|
||||||
|
--x86-64) SRS_X86_X64=YES ;;
|
||||||
--osx) SRS_OSX=YES ;;
|
--osx) SRS_OSX=YES ;;
|
||||||
--arm) SRS_ARM_UBUNTU12=YES ;;
|
--arm) SRS_ARM_UBUNTU12=YES ;;
|
||||||
--mips) SRS_MIPS_UBUNTU12=YES ;;
|
--mips) SRS_MIPS_UBUNTU12=YES ;;
|
||||||
|
|
|
@ -35,6 +35,7 @@ do
|
||||||
--help) help=yes ;;
|
--help) help=yes ;;
|
||||||
|
|
||||||
--x86-x64) X86_X64=YES ;;
|
--x86-x64) X86_X64=YES ;;
|
||||||
|
--x86-64) X86_X64=YES ;;
|
||||||
--mips) MIPS=YES ;;
|
--mips) MIPS=YES ;;
|
||||||
--arm) ARM=YES ;;
|
--arm) ARM=YES ;;
|
||||||
--pi) PI=YES ;;
|
--pi) PI=YES ;;
|
||||||
|
@ -54,6 +55,7 @@ if [ $help = yes ]; then
|
||||||
--arm for arm cross-build platform, configure/make/package.
|
--arm for arm cross-build platform, configure/make/package.
|
||||||
--mips for mips cross-build platform, configure/make/package.
|
--mips for mips cross-build platform, configure/make/package.
|
||||||
--pi for pi platform, configure/make/package.
|
--pi for pi platform, configure/make/package.
|
||||||
|
--x86-64 alias for --x86-x64.
|
||||||
END
|
END
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue