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

📄 acmacros.m4

📁 FreeFem++可以生成高质量的有限元网格。可以用于流体力学
💻 M4
字号:
# Checks whether a compiler accepts a given flag# ----------------------------------------------# $1 = compiler name# $2 = flag# $3 = make macro containing flags for that compiler# Note: changes AC_LANG()AC_DEFUN([CHECK_COMPILE_FLAG],	[AC_MSG_CHECKING(whether the $1 compiler accepts $2)	check_save_flags="$$3"	AC_LANG_PUSH($1)	$3="$$3 $2"	# The program needs to contain something for the test source	# file to be created by autoconf.	# Some options really need to be linked (not only compiled) to	# check whether they work.	AC_LINK_IFELSE([ifelse($1,Fortran 77,[       program x       end],			[AC_LANG_PROGRAM])],		check_flag_ok=yes,		check_flag_ok=no)	AC_MSG_RESULT($check_flag_ok)	if test "$check_flag_ok" = no;	then		$3="$check_save_flags"	fi	AC_LANG_POP($1)])

⌨️ 快捷键说明

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