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

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

?? vers.exp

?? Linux下嵌入式開發工具源代碼
?? EXP
?? 第 1 頁 / 共 2 頁
字號:
# Expect script for ld-version tests#   Copyright (C) 1997 Free Software Foundation## This file 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 of the License, 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.## Written by Eric Youngdale (eric@andante.jic.com)## This test can only be run if ld generates native executables.if ![isnative] then {return}# This test can only be run on a couple of ELF platforms.# Square bracket expressions seem to confuse istarget.# This is similar to the test that is used in ld-shared, BTW.if { ![istarget i386-*-sysv4*] \     && ![istarget i486-*-sysv4*] \     && ![istarget i586-*-sysv4*] \     && ![istarget i386-*-unixware] \     && ![istarget i486-*-unixware] \     && ![istarget i586-*-unixware] \     && ![istarget i386-*-elf*] \     && ![istarget i486-*-elf*] \     && ![istarget i586-*-elf*] \     && ![istarget i386-*-linux*] \     && ![istarget i486-*-linux*] \     && ![istarget i586-*-linux*] \     && ![istarget m68k-*-linux*] \     && ![istarget mips*-*-irix5*] \     && ![istarget sparc*-*-elf] \     && ![istarget sparc*-*-solaris2*] } {    return}if { [istarget i386-*-linuxaout*] \     || [istarget i486-*-linuxaout*] \     || [istarget i586-*-linuxaout*] \     || [istarget i386-*-linuxoldld*] \     || [istarget i486-*-linuxoldld*] \     || [istarget i586-*-linuxoldld*] \     || [istarget m68k-*-linuxaout*] } {    return}if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {    return}set diff diffset tmpdir tmpdirset VOBJDUMP_FLAGS --private-headersset DOBJDUMP_FLAGS --dynamic-symsset SOBJDUMP_FLAGS --symsset shared --sharedset script --version-scriptproc test_ar { test lib object expect } {    global ar    global nm    global tmpdir    global srcdir    global subdir    global diff    verbose -log "$ar -cr $tmpdir/$lib $tmpdir/$object"    catch "exec $ar -cr $tmpdir/$lib $tmpdir/$object" exec_output    set exec_output [prune_warnings $exec_output]    if ![string match "" $exec_output] {	verbose -log "$exec_output"	unresolved "$test"	return    }        verbose -log "$nm --print-armap $tmpdir/$lib | grep \" in \" | egrep \"VERS\\|bar\\|foo\" | sort > $tmpdir/nm.out"    catch "exec $nm --print-armap $tmpdir/$lib | grep \\\ in\\\  | egrep VERS\\\|bar\\\|foo | sort > $tmpdir/nm.out" exec_output    if [string match "" $exec_output] then {	catch "exec $diff -q $tmpdir/nm.out $srcdir/$subdir/$expect" exec_output	set exec_output [prune_warnings $exec_output]	if [string match "" $exec_output] then {	    pass $test	    return	} else {	    verbose -log "$exec_output"	    fail "$test"	    return	}    } else {	verbose -log "$exec_output"	fail "$test"    }}## objdump_emptysymstuff#	Check non-dynamic symbols and make sure there are none with '@'.#proc objdump_emptysymstuff { objdump object } {    global SOBJDUMP_FLAGS    global version_output    global diff    if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }    verbose -log "$objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p"    catch "exec $objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p" exec_output    set exec_output [prune_warnings $exec_output]    if [string match "" $exec_output] then {# We shouldn't get anything here.	return 1    } else {# it is not normal to come here - we have no output to compare.	verbose -log "$exec_output"	verbose -log "objdump_emptysymstuff: did not expect any output from objdump"	return 0    }}## objdump_emptydynsymstuff#	Check dynamic symbols and make sure there are none with '@'.#proc objdump_emptydynsymstuff { objdump object } {    global DOBJDUMP_FLAGS    global version_output    global diff    if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }    verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p"    catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p" exec_output    set exec_output [prune_warnings $exec_output]    if [string match "" $exec_output] then {# We shouldn't get anything here.	return 1    } else { if [string match "*objdump: *: not a dynamic object" $exec_output] then {	return 1    } else {# it is not normal to come here - we have no output to compare.	verbose -log "$exec_output"	verbose -log "objdump_emptydynsymstuff: did not expect any output from objdump"	return 0    } }}## objdump_emptyverstuff#	Make sure there is no version information#proc objdump_emptyverstuff { objdump object } {    global VOBJDUMP_FLAGS    global version_output    global diff    global tmpdir    if {[which $objdump] == 0} then {	perror "$objdump does not exist"	return 0    }    if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }    verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"    catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p" exec_output    set exec_output [prune_warnings $exec_output]    if [string match "" $exec_output] then {# it is normal to fail here - we have no output to compare.	return 1    } else { if { [string match "*libc*" $exec_output] } then {# this probably means that there is version information in libc, so we# can't really perform this test.	return 1    } else {	verbose -log "$exec_output"	verbose -log "objdump_emptyverstuff: did not expect any output from objdump"	return 0    } }}## objdump_symstuff#	Dump non-dynamic symbol stuff and make sure that it is sane.#proc objdump_symstuff { objdump object expectfile } {    global SOBJDUMP_FLAGS    global version_output    global diff    global tmpdir    if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }    verbose -log "$objdump $SOBJDUMP_FLAGS $object | grep \@ | sort  > $tmpdir/objdump.out"    catch "exec $objdump $SOBJDUMP_FLAGS $object | grep \@ | sort  > $tmpdir/objdump.out" exec_output    set exec_output [prune_warnings $exec_output]    if [string match "" $exec_output] then {# Now do a line-by-line comparison to effectively diff the darned things# The stuff coming from the expectfile is actually a regex, so we can# skip over the actual addresses and so forth.  This is currently very# simpleminded - it expects a one-to-one correspondence in terms of line# numbers.	if [file exists $expectfile] then {	    set file_a [open $expectfile r]	} else {	    perror "$expectfile doesn't exist"	    return 0	}		if [file exists $tmpdir/objdump.out] then {	    set file_b [open $tmpdir/objdump.out r]	} else {	    perror "$tmpdir/objdump.out doesn't exist"	    return 0	}	verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2	set eof -1	set differences 0	while { [gets $file_a line] != $eof } {	    if [regexp "^#.*$" $line] then {		continue	    } else {		lappend list_a $line	    }	}	close $file_a	while { [gets $file_b line] != $eof } {	    if [regexp "^#.*$" $line] then {		continue	    } else {		lappend list_b $line	    }	}	close $file_b		for { set i 0 } { $i < [llength $list_a] } { incr i } {	    set line_a [lindex $list_a $i]	    set line_b [lindex $list_b $i]	    	    verbose "\t$expectfile: $i: $line_a" 3	    verbose "\t/tmp/objdump.out: $i: $line_b" 3	    if [regexp $line_a $line_b] then {		continue	    } else {		verbose -log "\t$expectfile: $i: $line_a"		verbose -log "\t$tmpdir/objdump.out: $i: $line_b"				return 0	    }	}		if { [llength $list_a] != [llength $list_b] } {	    verbose -log "Line count"	    return 0	}		if $differences<1 then {	    return 1	}		return 0    } else {	verbose -log "$exec_output"	return 0    }}## objdump_dymsymstuff#	Dump dynamic symbol stuff and make sure that it is sane.#proc objdump_dynsymstuff { objdump object expectfile } {    global DOBJDUMP_FLAGS    global version_output    global diff    global tmpdir    if ![info exists DOBJDUMP_FLAGS] { set DOBJDUMP_FLAGS "" }    verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq  > $tmpdir/objdump.out"    catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq  > $tmpdir/objdump.out" exec_output    set exec_output [prune_warnings $exec_output]    if [string match "" $exec_output] then {# Now do a line-by-line comparison to effectively diff the darned things# The stuff coming from the expectfile is actually a regex, so we can# skip over the actual addresses and so forth.  This is currently very# simpleminded - it expects a one-to-one correspondence in terms of line# numbers.	if [file exists $expectfile] then {	    set file_a [open $expectfile r]	} else {	    warning "$expectfile doesn't exist"	    return 0	}		if [file exists $tmpdir/objdump.out] then {	    set file_b [open $tmpdir/objdump.out r]	} else {	    fail "$tmpdir/objdump.out doesn't exist"	    return 0	}	verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2	set eof -1	set differences 0	while { [gets $file_a line] != $eof } {	    if [regexp "^#.*$" $line] then {		continue	    } else {		lappend list_a $line	    }	}	close $file_a	while { [gets $file_b line] != $eof } {	    if [regexp "^#.*$" $line] then {		continue	    } else {		lappend list_b $line	    }	}	close $file_b		for { set i 0 } { $i < [llength $list_b] } { incr i } {	    set line_b [lindex $list_b $i]	    # The tests are rigged so that we should never export a symbol with the# word 'hide' in it.  Thus we just search for it, and bail if we find it.	    if [regexp "hide" $line_b] then {		verbose -log "\t$tmpdir/objdump.out: $i: $line_b"				return 0	    }	    verbose "\t$expectfile: $i: $line_b" 3	    # We can't assume that the sort is consistent across	    # systems, so we must check each regexp.  When we find a	    # regexp, we null it out, so we don't match it twice.	    for { set j 0 } { $j < [llength $list_a] } { incr j } {		set line_a [lindex $list_a $j]		if [regexp $line_a $line_b] then {		    lreplace $list_a $j $j "CAN NOT MATCH"		    break		}	    }	    if { $j >= [llength $list_a] } {		verbose -log "\t$tmpdir/objdump.out: $i: $line_b"				return 0	    }	}		if { [llength $list_a] != [llength $list_b] } {	    verbose -log "Line count"	    return 0	}		if $differences<1 then {	    return 1	}		return 0    } else {	verbose -log "$exec_output"	return 0    }}#

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚洲国产bt| 亚洲伊人伊色伊影伊综合网| 国产精品美女一区二区在线观看| 亚洲一区二区三区激情| 国产曰批免费观看久久久| 91久久人澡人人添人人爽欧美 | 色天天综合色天天久久| 日韩欧美国产高清| 一区二区三区国产| fc2成人免费人成在线观看播放| 日韩三级.com| 亚洲综合成人网| 91亚洲精品久久久蜜桃网站| 一级做a爱片久久| 成人免费毛片app| 国产欧美综合色| 国产一区二区三区高清播放| 欧美亚洲综合色| 亚洲欧美激情在线| 色综合中文字幕国产 | 国产成人精品免费网站| 日韩一区二区免费在线观看| 亚洲第四色夜色| 欧美体内she精高潮| 亚洲精品少妇30p| 一本大道久久a久久综合| 中文字幕高清一区| 国产成人免费xxxxxxxx| 久久久久久久综合日本| 国产一区二区视频在线| www国产亚洲精品久久麻豆| 极品美女销魂一区二区三区 | 亚洲欧美另类综合偷拍| 不卡的电影网站| 亚洲色图制服诱惑| 色综合久久六月婷婷中文字幕| 国产日韩亚洲欧美综合| 成人丝袜18视频在线观看| 国产女人18毛片水真多成人如厕 | 精品一区二区三区香蕉蜜桃| 日韩午夜激情电影| 国产福利精品导航| 国产精品不卡一区| 91传媒视频在线播放| 亚洲成a天堂v人片| 日韩欧美一二三四区| 国产在线精品免费| 国产精品电影一区二区| 日本韩国欧美三级| 日韩黄色片在线观看| 精品久久国产字幕高潮| 国产suv精品一区二区883| 中文字幕字幕中文在线中不卡视频| 色综合中文字幕国产| 亚洲午夜激情网站| 欧美一区二区三区不卡| 国产精品456| 亚洲精品国产一区二区三区四区在线| 日本精品免费观看高清观看| 奇米色一区二区三区四区| 中文字幕精品一区二区精品绿巨人| 91麻豆免费看片| 日韩成人精品在线| 亚洲欧洲日产国码二区| 欧美日韩另类国产亚洲欧美一级| 久久国产尿小便嘘嘘尿| 国产精品伦一区| 日韩欧美国产一区二区三区| 成人高清视频免费观看| 日韩avvvv在线播放| 1000精品久久久久久久久| 制服视频三区第一页精品| 丁香另类激情小说| 日本一道高清亚洲日美韩| 国产精品灌醉下药二区| 日韩欧美亚洲另类制服综合在线| av一区二区三区四区| 日韩国产高清在线| 亚洲男帅同性gay1069| 欧美tickling挠脚心丨vk| 在线观看日韩av先锋影音电影院| 狠狠色狠狠色综合系列| 亚洲二区在线观看| 亚洲视频一二三区| 26uuu精品一区二区三区四区在线| 色综合久久99| eeuss鲁片一区二区三区| 麻豆精品在线播放| 午夜欧美电影在线观看| 一区二区三区在线免费观看| 国产天堂亚洲国产碰碰| 精品免费99久久| 9191成人精品久久| 在线免费视频一区二区| av一区二区三区在线| 国产一区二区精品久久91| 蜜桃av噜噜一区| 午夜伊人狠狠久久| 亚洲男同1069视频| 亚洲欧美成人一区二区三区| 中文字幕av一区二区三区高| 久久噜噜亚洲综合| 久久人人超碰精品| 久久免费午夜影院| 2022国产精品视频| 26uuu久久天堂性欧美| 精品久久久久香蕉网| 欧美变态tickle挠乳网站| 91精品国产综合久久福利软件| 欧美在线综合视频| 欧美色成人综合| 欧美午夜精品一区二区三区| 日本道免费精品一区二区三区| 日本电影欧美片| 欧美日韩一区二区在线视频| 欧美日韩国产美| 3d动漫精品啪啪1区2区免费| 91麻豆精品91久久久久久清纯| 7777精品伊人久久久大香线蕉超级流畅| 欧美在线视频不卡| 4438x亚洲最大成人网| 日韩精品一区二区三区在线| 亚洲精品一区二区三区四区高清| 久久婷婷成人综合色| 国产亚洲成av人在线观看导航| 久久精品视频免费| 亚洲三级理论片| 亚洲综合在线视频| 免费欧美在线视频| 国产精品99久久久久| thepron国产精品| 欧美日韩色综合| 精品国产一区二区三区av性色| 国产校园另类小说区| 最新国产成人在线观看| 亚洲国产一二三| 精品在线观看视频| 97国产一区二区| 欧美日韩国产另类不卡| 久久久久一区二区三区四区| 亚洲天堂a在线| 亚洲成人中文在线| 国产成人小视频| 欧美日韩精品一区二区三区| 欧美成人三级在线| 亚洲激情在线播放| 久久99这里只有精品| a4yy欧美一区二区三区| 欧美一区二区视频免费观看| 中文字幕不卡三区| 美女网站在线免费欧美精品| 不卡一卡二卡三乱码免费网站| 欧美无人高清视频在线观看| 久久在线观看免费| 一区二区在线观看视频在线观看| 久久国产精品99精品国产| 9久草视频在线视频精品| 欧美一级艳片视频免费观看| 最新欧美精品一区二区三区| 蜜臀av性久久久久蜜臀av麻豆| 99国产精品国产精品毛片| 欧美成人a视频| 亚洲一区二三区| 国产91在线观看丝袜| 欧美日韩综合在线免费观看| 国产精品国产三级国产普通话三级| 免费一级欧美片在线观看| 91玉足脚交白嫩脚丫在线播放| 日韩女优电影在线观看| 亚洲国产精品天堂| aaa国产一区| 欧美国产一区二区| 久久精品国产99国产精品| 欧美日韩一区二区电影| 亚洲色图欧洲色图婷婷| 国产一区二区三区观看| 日韩欧美中文字幕精品| 亚洲制服丝袜av| av在线不卡网| 欧美高清在线视频| 国产精品性做久久久久久| 欧美成人精品3d动漫h| 日本不卡视频在线观看| 欧美色欧美亚洲另类二区| 亚洲视频你懂的| 99这里都是精品| 国产精品你懂的在线| 国内精品在线播放| 2022国产精品视频| 国产一区999| 欧美精品一区二区三区久久久 | 日韩欧美国产一区二区三区| 亚洲五月六月丁香激情| 在线视频欧美精品| 亚洲美女屁股眼交3| 91黄色激情网站| 亚洲一区中文日韩| 欧美色图12p| 亚洲777理论| 日韩久久免费av|