pipe.m4

来自「lzo-1.08-src.zip 高效的压缩解压代码」· M4 代码 · 共 26 行

M4
26
字号
## --------------------------------------------------------- #### Check if gcc accepts '-pipe'.                             #### Adapted from AC_PROG_CC and AC_PROG_GCC_TRADITIONAL.      #### --------------------------------------------------------- ### serial 1AC_DEFUN(mfx_PROG_GCC_PIPE,[AC_REQUIRE([AC_PROG_CC])dnlAC_REQUIRE([AC_PROG_CPP])dnlif test "$ac_cv_prog_gcc" = yes; thenAC_CACHE_CHECK([whether ${CC-cc} accepts -pipe], mfx_cv_prog_gcc_pipe,[echo 'int main() { return 0; }' > conftest.cif test -z "`${CC-cc} -pipe -c conftest.c 2>&1`"; then  mfx_cv_prog_gcc_pipe=yeselse  mfx_cv_prog_gcc_pipe=nofirm -f conftest*])  if test "$mfx_cv_prog_gcc_pipe" = yes; then    CC="$CC -pipe"  fifi])

⌨️ 快捷键说明

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