⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.ac

📁 能把所有线程的数据和环境记录到文件,方便调试.
💻 AC
字号:
## Process this file with autoconf to produce configure.## In general, the safest way to proceed is to run the following:##    % aclocal -I `pwd`/../autoconf && autoconf && autoheader && automake# make sure we're interpreted by some minimal autoconfAC_PREREQ(2.57)AC_INIT(coredumper, 1.1, opensource@google.com)# The argument here is just something that should be in the current directory# (for sanity checking)AC_CONFIG_SRCDIR(README)AM_INIT_AUTOMAKEAM_CONFIG_HEADER(src/config.h)# Checks for programs.AC_PROG_CCAC_PROG_INSTALLAC_PROG_LIBTOOLAC_SUBST(LIBTOOL_DEPS)# Check whether some low-level functions/files are availableAC_HEADER_STDC# Here are some examples of how to check for the existence of a fn or fileAC_CHECK_HEADERS([elf.h errno.h fcntl.h linux/unistd.h pthread.h signal.h     \                  stdlib.h string.h sys/prctl.h sys/ptrace.h sys/resource.h   \                  sys/socket.h sys/stat.h sys/sysctl.h sys/time.h sys/types.h \                  sys/uio.h sys/wait.h unistd.h])# Checks for typedefs, structures, and compiler characteristicsAC_C_CONST# Checks for library functionsAC_PROG_GCC_TRADITIONAL# Check if we can force the compiler to generate frame pointersAC_MSG_CHECKING([whether compiler supports -fno-omit-frame-pointer])saved_CFLAGS="$CFLAGS"; CFLAGS="-fno-omit-frame-pointer $CFLAGS"AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,)],                  [AC_SUBST(AM_CFLAGS, ["$AM_CFLAGS -fno-omit-frame-pointer"])                   AC_MSG_RESULT([yes])],                  [AC_MSG_RESULT([no])])CFLAGS="$saved_CFLAGS"# Write generated configuration fileAC_CONFIG_FILES([Makefile])AC_OUTPUT

⌨️ 快捷键说明

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