check_cpu.m4

来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· M4 代码 · 共 48 行

M4
48
字号
AC_DEFUN([MYSQL_CHECK_CPU],[AC_CACHE_CHECK([if compiler supports optimizations for current cpu],mysql_cv_cpu,[ac_save_CFLAGS="$CFLAGS"if test -r /proc/cpuinfo ; then  cpuinfo="cat /proc/cpuinfo"  cpu_family=`$cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`  cpu_vendor=`$cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`fi if test "$cpu_vendor" = "AuthenticAMD"; then    if test $cpu_family -ge 6; then      cpu_set="athlon pentiumpro k5 pentium i486 i386";    elif test $cpu_family -eq 5; then      cpu_set="k5 pentium i486 i386";    elif test $cpu_family -eq 4; then      cpu_set="i486 i386"    else      cpu_set="i386"    fielif test "$cpu_vendor" = "GenuineIntel"; then    if test $cpu_family -ge 6; then      cpu_set="pentiumpro pentium i486 i386";    elif test $cpu_family -eq 5; then      cpu_set="pentium i486 i386";    elif test $cpu_family -eq 4; then      cpu_set="i486 i386"    else      cpu_set="i386"    fififor ac_arg in $cpu_set;do  CFLAGS="$ac_save_CFLAGS -mcpu=$ac_arg -march=$ac_arg -DCPU=$ac_arg"   AC_TRY_COMPILE([],[int i],mysql_cv_cpu=$ac_arg; break;, mysql_cv_cpu="unknown")doneif test "$mysql_cv_cpu" = "unknown"then  CFLAGS="$ac_save_CFLAGS"  AC_MSG_RESULT(none)else  AC_MSG_RESULT($mysql_cv_cpu)fi])])

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?