📄 noinst-link.test
字号:
#! /bin/sh# noinst-link.test - make sure we do not link with an installed# library when an uninstalled one is to be used# Test script header.need_prefix=yesif test -z "$srcdir"; then srcdir=`echo "$0" | sed 's%/[^/]*$%%'` test "$srcdir" = "$0" && srcdir=. test "${VERBOSE+set}" != "set" && VERBOSE=yesfi. $srcdir/defs || exit 1# Check that things are built.if test -f $prefix/lib/libhello.la; then :else echo "You must run demo-inst.test before $0" 1>&2 exit 77fi# Change to our build directory.cd ../demo || exit 77echo "removing libhello.la and hell from ../demo"rm -f libhello.la hellecho "linking hell with a broken ../demo/libhello.la"if $make hell libhello_la_OBJECTS=hello.lo; then echo "= Succeeded: this means the installed library was used, which is wrong" status=1firm -f libhello.la hellexit $status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -