在我的 shell 脚本中,CFLAGS 如下所示:
export CFLAGS="-O2 -mtune=native -march=native -pipe"
当我使用这些标志编译 PHP 时,sapi/cli/php 报告 SIGILL 错误,否则我取消了标志声明,编译很好。
我用gdb,但是发现它说“ Program received signal SIGILL, Illegal instruction zend_strtod ()
”
那么,该错误的原因是什么?
在我的 shell 脚本中,CFLAGS 如下所示:
export CFLAGS="-O2 -mtune=native -march=native -pipe"
当我使用这些标志编译 PHP 时,sapi/cli/php 报告 SIGILL 错误,否则我取消了标志声明,编译很好。
我用gdb,但是发现它说“ Program received signal SIGILL, Illegal instruction zend_strtod ()
”
那么,该错误的原因是什么?