亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? fortran.m4

?? LINUX下的源碼工具,可自己分析,或者直接裝在系統上作為應用
?? M4
?? 第 1 頁 / 共 2 頁
字號:
# This file is part of Autoconf.                       -*- Autoconf -*-# Fortran languages support.# Copyright 2001# Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA.## As a special exception, the Free Software Foundation gives unlimited# permission to copy, distribute and modify the configure scripts that# are the output of Autoconf.  You need not follow the terms of the GNU# General Public License when using or distributing such scripts, even# though portions of the text of Autoconf appear in them.  The GNU# General Public License (GPL) does govern all other use of the material# that constitutes the Autoconf program.## Certain portions of the Autoconf source text are designed to be copied# (in certain cases, depending on the input) into the output of# Autoconf.  We call these the "data" portions.  The rest of the Autoconf# source text consists of comments plus executable code that decides which# of the data portions to output in any given case.  We call these# comments and executable code the "non-data" portions.  Autoconf never# copies any of the non-data portions into its output.## This special exception to the GPL applies to versions of Autoconf# released by the Free Software Foundation.  When you make and# distribute a modified version of Autoconf, you may extend this special# exception to the GPL to apply to your modified version as well, *unless*# your modified version has the potential to copy into its output some# of the text that was the non-data portion of the version that you started# with.  (In other words, unless your change moves or copies text from# the non-data portions to the data portions.)  If your modification has# such potential, you must delete any notice of this special exception# to the GPL from your modified version.## Written by David MacKenzie, with help from# Franc,ois Pinard, Karl Berry, Richard Pixley, Ian Lance Taylor,# Roland McGrath, Noah Friedman, david d zuhn, and many others.# _AC_LIST_MEMBER_IF(ELEMENT, LIST, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])# ---------------------------------------------------------------------------## Processing the elements of a list is tedious in shell programming,# as lists tend to be implemented as space delimited strings.## This macro searches LIST for ELEMENT, and executes ACTION-IF-FOUND# if ELEMENT is a member of LIST, otherwise it executes# ACTION-IF-NOT-FOUND.AC_DEFUN([_AC_LIST_MEMBER_IF],[dnl Do some sanity checking of the arguments.m4_if([$1], , [AC_FATAL([$0: missing argument 1])])dnlm4_if([$2], , [AC_FATAL([$0: missing argument 2])])dnl  ac_exists=false  for ac_i in $2; do    if test x"$1" = x"$ac_i"; then      ac_exists=true      break    fi  done  AS_IF([test x"$ac_exists" = xtrue], [$3], [$4])[]dnl])# _AC_LIST_MEMBER_IF# _AC_LINKER_OPTION(LINKER-OPTIONS, SHELL-VARIABLE)# -------------------------------------------------## Specifying options to the compiler (whether it be the C, C++ or# Fortran 77 compiler) that are meant for the linker is compiler# dependent.  This macro lets you give options to the compiler that# are meant for the linker in a portable, compiler-independent way.## This macro take two arguments, a list of linker options that the# compiler should pass to the linker (LINKER-OPTIONS) and the name of# a shell variable (SHELL-VARIABLE).  The list of linker options are# appended to the shell variable in a compiler-dependent way.## For example, if the selected language is C, then this:##   _AC_LINKER_OPTION([-R /usr/local/lib/foo], foo_LDFLAGS)## will expand into this if the selected C compiler is gcc:##   foo_LDFLAGS="-Xlinker -R -Xlinker /usr/local/lib/foo"## otherwise, it will expand into this:##   foo_LDFLAGS"-R /usr/local/lib/foo"## You are encouraged to add support for compilers that this macro# doesn't currently support.# FIXME: Get rid of this macro.AC_DEFUN([_AC_LINKER_OPTION],[if test "$ac_compiler_gnu" = yes; then  for ac_link_opt in $1; do    $2="[$]$2 -Xlinker $ac_link_opt"  doneelse  $2="[$]$2 $1"fi[]dnl])# _AC_LINKER_OPTION## ----------------------- #### 1. Language selection.  #### ----------------------- ### ----------------------------- ## 1d. The Fortran 77 language.  ## ----------------------------- ## AC_LANG(Fortran 77)# -------------------m4_define([AC_LANG(Fortran 77)],[ac_ext=fac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&AS_MESSAGE_LOG_FD'ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&AS_MESSAGE_LOG_FD'ac_compiler_gnu=$ac_cv_f77_compiler_gnu])# AC_LANG_FORTRAN77# -----------------AU_DEFUN([AC_LANG_FORTRAN77], [AC_LANG(Fortran 77)])# _AC_LANG_ABBREV(Fortran 77)# ---------------------------m4_define([_AC_LANG_ABBREV(Fortran 77)], [f77])## ---------------------- #### 2.Producing programs.  #### ---------------------- ### ------------------------ ## 2d. Fortran 77 sources.  ## ------------------------ ## AC_LANG_SOURCE(Fortran 77)(BODY)# --------------------------------# FIXME: Apparently, according to former AC_TRY_COMPILER, the CPP# directives must not be included.  But AC_TRY_RUN_NATIVE was not# avoiding them, so?m4_define([AC_LANG_SOURCE(Fortran 77)],[$1])# AC_LANG_PROGRAM(Fortran 77)([PROLOGUE], [BODY])# -----------------------------------------------# Yes, we discard the PROLOGUE.m4_define([AC_LANG_PROGRAM(Fortran 77)],[m4_ifval([$1],       [m4_warn([syntax], [$0: ignoring PROLOGUE: $1])])dnl      program main$2      end])# AC_LANG_CALL(Fortran 77)(PROLOGUE, FUNCTION)# --------------------------------------------# FIXME: This is a guess, help!m4_define([AC_LANG_CALL(Fortran 77)],[AC_LANG_PROGRAM([$1],[      call $2])])## -------------------------------------------- #### 3. Looking for Compilers and Preprocessors.  #### -------------------------------------------- ### ----------------------------- ## 3d. The Fortran 77 compiler.  ## ----------------------------- ## AC_LANG_PREPROC(Fortran 77)# ---------------------------# Find the Fortran 77 preprocessor.  Must be AC_DEFUN'd to be AC_REQUIRE'able.AC_DEFUN([AC_LANG_PREPROC(Fortran 77)],[m4_warn([syntax],         [$0: No preprocessor defined for ]_AC_LANG)])# AC_LANG_COMPILER(Fortran 77)# ----------------------------# Find the Fortran 77 compiler.  Must be AC_DEFUN'd to be# AC_REQUIRE'able.AC_DEFUN([AC_LANG_COMPILER(Fortran 77)],[AC_REQUIRE([AC_PROG_F77])])# ac_cv_prog_g77# --------------# We used to name the cache variable this way.AU_DEFUN([ac_cv_prog_g77],[ac_cv_f77_compiler_gnu])# AC_PROG_F77([COMPILERS...])# ---------------------------# COMPILERS is a space separated list of Fortran 77 compilers to search# for.  Fortran 95 isn't strictly backwards-compatible with Fortran 77,# but `f95' is worth trying.## Compilers are ordered by#  1. F77, F90, F95#  2. Good/tested native compilers, bad/untested native compilers#  3. Wrappers around f2c go last.## `fort77' is a wrapper around `f2c'.# It is believed that under HP-UX `fort77' is the name of the native# compiler.  On some Cray systems, fort77 is a native compiler.# frt is the Fujitsu F77 compiler.# pgf77 and pgf90 are the Portland Group F77 and F90 compilers.# xlf/xlf90/xlf95 are IBM (AIX) F77/F90/F95 compilers.# lf95 is the Lahey-Fujitsu compiler.# fl32 is the Microsoft Fortran "PowerStation" compiler.# af77 is the Apogee F77 compiler for Intergraph hardware running CLIX.# epcf90 is the "Edinburgh Portable Compiler" F90.# fort is the Compaq Fortran 90 (now 95) compiler for Tru64 and Linux/Alpha.AC_DEFUN([AC_PROG_F77],[AC_LANG_PUSH(Fortran 77)dnlAC_ARG_VAR([F77],    [Fortran 77 compiler command])dnlAC_ARG_VAR([FFLAGS], [Fortran 77 compiler flags])dnl_AC_ARG_VAR_LDFLAGS()dnlAC_CHECK_TOOLS(F77,      [m4_default([$1],                  [g77 f77 xlf frt pgf77 fl32 af77 fort77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 lf95 g95])])# Provide some information about the compiler.echo "$as_me:__oline__:" \     "checking for _AC_LANG compiler version" >&AS_MESSAGE_LOG_FDac_compiler=`set X $ac_compile; echo $[2]`_AC_EVAL([$ac_compiler --version </dev/null >&AS_MESSAGE_LOG_FD])_AC_EVAL([$ac_compiler -v </dev/null >&AS_MESSAGE_LOG_FD])_AC_EVAL([$ac_compiler -V </dev/null >&AS_MESSAGE_LOG_FD])m4_expand_once([_AC_COMPILER_EXEEXT])[]dnlm4_expand_once([_AC_COMPILER_OBJEXT])[]dnl# If we don't use `.F' as extension, the preprocessor is not run on the# input file.ac_save_ext=$ac_extac_ext=F_AC_LANG_COMPILER_GNUac_ext=$ac_save_extG77=`test $ac_compiler_gnu = yes && echo yes`_AC_PROG_F77_GAC_LANG_POP(Fortran 77)dnl])# AC_PROG_F77# _AC_PROG_F77_G# --------------# Check whether -g works, even if FFLAGS is set, in case the package# plays around with FFLAGS (such as to build both debugging and normal# versions of a library), tasteless as that idea is.m4_define([_AC_PROG_F77_G],[ac_test_FFLAGS=${FFLAGS+set}ac_save_FFLAGS=$FFLAGSFFLAGS=AC_CACHE_CHECK(whether $F77 accepts -g, ac_cv_prog_f77_g,[FFLAGS=-g_AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],[ac_cv_prog_f77_g=yes],[ac_cv_prog_f77_g=no])])if test "$ac_test_FFLAGS" = set; then  FFLAGS=$ac_save_FFLAGSelif test $ac_cv_prog_f77_g = yes; then  if test "$G77" = yes; then    FFLAGS="-g -O2"  else    FFLAGS="-g"  fielse  if test "$G77" = yes; then    FFLAGS="-O2"  else    FFLAGS=  fifi[]dnl])# _AC_PROG_F77_G# AC_PROG_F77_C_O# ---------------# Test if the Fortran 77 compiler accepts the options `-c' and `-o'# simultaneously, and define `F77_NO_MINUS_C_MINUS_O' if it does not.## The usefulness of this macro is questionable, as I can't really see# why anyone would use it.  The only reason I include it is for# completeness, since a similar test exists for the C compiler.AC_DEFUN([AC_PROG_F77_C_O],[AC_REQUIRE([AC_PROG_F77])dnlAC_CACHE_CHECK([whether $F77 understand -c and -o together],               [ac_cv_prog_f77_c_o],[AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])# We test twice because some compilers refuse to overwrite an existing# `.o' file with `-o', although they will create one.ac_try='$F77 $FFLAGS -c conftest.$ac_ext -o conftest.$ac_objext >&AS_MESSAGE_LOG_FD'if AC_TRY_EVAL(ac_try) &&     test -f conftest.$ac_objext &&     AC_TRY_EVAL(ac_try); then  ac_cv_prog_f77_c_o=yeselse  ac_cv_prog_f77_c_o=nofirm -f conftest*])if test $ac_cv_prog_f77_c_o = no; then  AC_DEFINE(F77_NO_MINUS_C_MINUS_O, 1,            [Define to 1 if your Fortran 77 compiler doesn't accept             -c and -o together.])fi])# AC_PROG_F77_C_O## ------------------------------- #### 4. Compilers' characteristics.  #### ------------------------------- ### ---------------------------------------- ## 4d. Fortran 77 compiler characteristics. ## ---------------------------------------- ## _AC_PROG_F77_V_OUTPUT([FLAG = $ac_cv_prog_f77_v])# -------------------------------------------------# Link a trivial Fortran program, compiling with a verbose output FLAG# (which default value, $ac_cv_prog_f77_v, is computed by# _AC_PROG_F77_V), and return the output in $ac_f77_v_output.  This# output is processed in the way expected by AC_F77_LIBRARY_LDFLAGS,# so that any link flags that are echoed by the compiler appear as# space-separated items.AC_DEFUN([_AC_PROG_F77_V_OUTPUT],[AC_REQUIRE([AC_PROG_F77])dnlAC_LANG_PUSH(Fortran 77)dnlAC_LANG_CONFTEST([AC_LANG_PROGRAM([])])# Compile and link our simple test program by passing a flag (argument# 1 to this macro) to the Fortran 77 compiler in order to get# "verbose" output that we can then parse for the Fortran 77 linker# flags.ac_save_FFLAGS=$FFLAGSFFLAGS="$FFLAGS m4_default([$1], [$ac_cv_prog_f77_v])"(eval echo $as_me:__oline__: \"$ac_link\") >&AS_MESSAGE_LOG_FDac_f77_v_output=`eval $ac_link AS_MESSAGE_LOG_FD>&1 2>&1 | grep -v 'Driving:'`echo "$ac_f77_v_output" >&AS_MESSAGE_LOG_FDFFLAGS=$ac_save_FFLAGSrm -f conftest*AC_LANG_POP(Fortran 77)dnl# If we are using xlf then replace all the commas with spaces.if echo $ac_f77_v_output | grep xlfentry >/dev/null 2>&1; then  ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'`fi# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where# /foo, /bar, and /baz are search directories for the Fortran linker.# Here, we change these into -L/foo -L/bar -L/baz (and put it first):ac_f77_v_output="`echo $ac_f77_v_output |	grep 'LPATH is:' |	sed 's,.*LPATH is\(: *[[^ ]]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output"# If we are using Cray Fortran then delete quotes.# Use "\"" instead of '"' for font-lock-mode.# FIXME: a more general fix for quoted arguments with spaces?if echo $ac_f77_v_output | grep cft90 >/dev/null 2>&1; then  ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"`fi[]dnl])# _AC_PROG_F77_V_OUTPUT# _AC_PROG_F77_V# --------------## Determine the flag that causes the Fortran 77 compiler to print# information of library and object files (normally -v)# Needed for AC_F77_LIBRARY_FLAGS

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日日骚欧美日韩| 日韩女优av电影| 日韩精品影音先锋| 亚洲桃色在线一区| 国产精品一二三区在线| 欧美日韩一区二区三区免费看| 国产婷婷色一区二区三区| 亚洲成人动漫精品| 色婷婷国产精品| 国产女同性恋一区二区| 另类小说视频一区二区| 欧美丝袜第三区| 亚洲视频网在线直播| 懂色av噜噜一区二区三区av| 欧美大片日本大片免费观看| 亚洲妇女屁股眼交7| 91丝袜国产在线播放| 国产日韩视频一区二区三区| 久久精品国产精品亚洲精品| 欧美精品日韩一本| 亚洲va欧美va天堂v国产综合| 色婷婷久久综合| 亚洲欧美一区二区不卡| 成人av免费在线观看| 日本一区二区免费在线观看视频 | 国产视频一区在线播放| 日本视频免费一区| 欧美一区二区三区思思人| 亚洲韩国一区二区三区| 色狠狠一区二区| 亚洲高清免费在线| 欧美精品久久天天躁| 日韩中文字幕一区二区三区| 欧美福利视频一区| 日一区二区三区| 欧美一区二区在线免费播放| 蜜桃传媒麻豆第一区在线观看| 日韩欧美激情四射| 国产一区二区电影| 中文字幕亚洲区| 日本韩国一区二区| 亚洲bdsm女犯bdsm网站| 日韩一区二区三区在线观看| 激情综合色综合久久| 国产欧美精品一区aⅴ影院 | 一区二区免费在线播放| 欧美午夜电影一区| 秋霞午夜鲁丝一区二区老狼| 久久综合久久久久88| 成人h精品动漫一区二区三区| 国产精品久线在线观看| 欧美写真视频网站| 久久精品国产澳门| 国产精品情趣视频| 欧美色区777第一页| 精品在线播放午夜| 亚洲欧美日韩一区二区 | 日韩欧美不卡一区| 不卡的看片网站| 日日夜夜免费精品| 国产色91在线| 欧美丝袜丝nylons| 国产精品18久久久久久久久久久久| 中文字幕一区二区三区不卡 | 国产成人精品亚洲777人妖| 亚洲欧洲在线观看av| 日韩一区二区免费在线电影| 国产69精品久久久久毛片 | 这里只有精品视频在线观看| 国产一区二区三区在线观看免费 | 欧美tk丨vk视频| 韩国理伦片一区二区三区在线播放 | 国产亚洲欧美在线| 91久久精品一区二区| 国产真实乱子伦精品视频| 综合亚洲深深色噜噜狠狠网站| 69久久夜色精品国产69蝌蚪网| 成人午夜激情视频| 日韩电影在线观看一区| 亚洲欧美一区二区三区极速播放| 日韩亚洲国产中文字幕欧美| 99re视频精品| 国精产品一区一区三区mba视频| 日韩伦理免费电影| 精品国产乱码久久久久久久| 欧美色网站导航| 91啪亚洲精品| 日产国产欧美视频一区精品 | 伊人一区二区三区| wwwwww.欧美系列| 欧美日韩在线直播| 色噜噜久久综合| 成人一区二区三区视频在线观看| 久久精品国产免费| 五月婷婷久久综合| 亚洲综合精品自拍| 专区另类欧美日韩| 国产精品欧美久久久久无广告 | 欧美成人免费网站| 欧美色大人视频| 欧美午夜精品久久久久久孕妇| 波多野洁衣一区| 成人黄色av网站在线| 国产成人精品午夜视频免费| 国产乱人伦精品一区二区在线观看 | 国产99精品国产| 精品一二三四在线| 国产综合色产在线精品| 久久99精品久久久久久动态图| 日韩精品一区第一页| 一个色在线综合| 亚洲成精国产精品女| 亚洲chinese男男1069| 亚洲va天堂va国产va久| 日韩国产欧美在线观看| 日韩精品电影在线观看| 日韩av一级电影| 奇米影视7777精品一区二区| 久久精品国产网站| 国产成人在线视频免费播放| 国产馆精品极品| 99热99精品| 欧美日韩在线播放三区四区| 欧美高清你懂得| 精品国产一区二区三区忘忧草| 久久综合99re88久久爱| 中文字幕免费观看一区| 亚洲精品免费在线| 午夜视黄欧洲亚洲| 狠狠色丁香婷综合久久| 成人国产精品免费观看动漫| 欧美影院一区二区三区| 欧美一区中文字幕| 久久久综合视频| 亚洲人成亚洲人成在线观看图片| 亚洲国产精品久久久久婷婷884 | 国产欧美精品区一区二区三区| 国产精品三级视频| 亚洲精品大片www| 麻豆精品在线看| av电影在线不卡| 欧美肥妇bbw| 久久久777精品电影网影网 | 国产欧美va欧美不卡在线| 亚洲人成人一区二区在线观看| 日韩在线a电影| 国产一区啦啦啦在线观看| 成人小视频在线| 欧美日韩久久一区| 国产人伦精品一区二区| 亚洲国产精品一区二区尤物区| 激情文学综合网| 欧美亚洲国产一区二区三区va| 精品少妇一区二区三区免费观看| 国产精品素人视频| 日本不卡视频在线观看| av电影在线观看不卡| 日韩欧美国产综合在线一区二区三区| 中文字幕中文字幕在线一区| 日韩成人免费电影| 91免费视频大全| 2021国产精品久久精品| 亚洲一区影音先锋| 成人av资源在线| 日韩欧美一区二区在线视频| 一区二区三区中文字幕| 国产精品影视网| 欧美一区二区三区视频免费 | 亚洲精品国产无天堂网2021| 国产一区二区剧情av在线| 欧美日韩视频在线一区二区 | 精品在线一区二区三区| 欧美日韩性生活| 亚洲欧美另类久久久精品| 国产a精品视频| 日韩欧美一区电影| 视频一区在线播放| 欧美日韩日日骚| 亚洲欧美日韩在线不卡| 成人av网在线| 亚洲国产精品成人久久综合一区| 久久99深爱久久99精品| 91精品国产综合久久小美女| 亚洲综合在线五月| 91丝袜国产在线播放| 亚洲同性gay激情无套| 懂色中文一区二区在线播放| 久久久国产综合精品女国产盗摄| 久久不见久久见中文字幕免费| 欧美片在线播放| 性做久久久久久免费观看| 91久久一区二区| 一区二区三区电影在线播| 91天堂素人约啪| 亚洲免费成人av| 在线看一区二区| 偷偷要91色婷婷| 日韩欧美高清dvd碟片| 精品一区二区免费在线观看| 欧美大片顶级少妇|