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

📄 restrict.m4

📁 制作2.6内核的CLFS时 使用的diffutils-2.8.7.tar.gz包
💻 M4
字号:
#serial 1002# This macro can be removed once we can rely on Autoconf 2.57a or later,# since we can then use its AC_C_RESTRICT.# gl_C_RESTRICT# --------------# Determine whether the C/C++ compiler supports the "restrict" keyword# introduced in ANSI C99, or an equivalent.  Do nothing if the compiler# accepts it.  Otherwise, if the compiler supports an equivalent,# define "restrict" to be that.  Here are some variants:# - GCC supports both __restrict and __restrict__# - older DEC Alpha C compilers support only __restrict# - _Restrict is the only spelling accepted by Sun WorkShop 6 update 2 C# Otherwise, define "restrict" to be empty.AC_DEFUN([gl_C_RESTRICT],[AC_CACHE_CHECK([for C/C++ restrict keyword], gl_cv_c_restrict,  [gl_cv_c_restrict=no   # Try the official restrict keyword, then gcc's __restrict, and   # the less common variants.   for ac_kw in restrict __restrict __restrict__ _Restrict; do     AC_COMPILE_IFELSE([AC_LANG_SOURCE(      [float * $ac_kw x;])],      [gl_cv_c_restrict=$ac_kw; break])   done  ]) case $gl_cv_c_restrict in   restrict) ;;   no) AC_DEFINE(restrict,,	[Define to equivalent of C99 restrict keyword, or to nothing if this	is not supported.  Do not define if restrict is supported directly.]) ;;   *)  AC_DEFINE_UNQUOTED(restrict, $gl_cv_c_restrict) ;; esac])

⌨️ 快捷键说明

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