diff --git a/trunk/auto/options.sh b/trunk/auto/options.sh index 9d7b6f6ec..94ad57b48 100755 --- a/trunk/auto/options.sh +++ b/trunk/auto/options.sh @@ -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 ;; diff --git a/trunk/scripts/package.sh b/trunk/scripts/package.sh index 6218068b0..5d0a6f561 100755 --- a/trunk/scripts/package.sh +++ b/trunk/scripts/package.sh @@ -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