link_f_cxx.test
来自「这是一个自动生成MAKEFILE的工具。相信大家都听说过。在LINUX工程项目里」· TEST 代码 · 共 35 行
TEST
35 行
#! /bin/sh# Test to make sure the C++ linker is used when appropriate.# Matthew D. Langston <langston@SLAC.Stanford.EDU>. $srcdir/defs || exit 1cat >> configure.in << 'END'AC_PROG_CXXAC_PROG_F77ENDcat > Makefile.am << 'END'bin_PROGRAMS = lavalamplavalamp_SOURCES = lava.cxx lamp.fEND: > lava.cxx: > lamp.f$AUTOMAKE || exit 1# We should only see the C++ linker in the rules of `Makefile.in'.# Look for this macro not at the beginning of any line; that will have# to be good enough for now.grep '.\$(CXXLINK)' Makefile.in || exit 1# We should not see these patterns:grep '.\$(F77LINK)' Makefile.in && exit 1grep '.\$(LINK)' Makefile.in && exit 1exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?