linux-2.6.15.6

源代码在线查看: check-gas

软件大小: 48743 K
上传用户: ATT320
关键词: linux 15
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/sh				dir=$(dirname $0)				CC=$1				OBJDUMP=$2				tmp=${TMPDIR:-/tmp}				out=$tmp/out$$.o				$CC -c $dir/check-gas-asm.S -o $out				res=$($OBJDUMP -r --section .data $out | fgrep 00004 | tr -s ' ' |cut -f3 -d' ')				rm -f $out				if [ $res != ".text" ]; then					echo buggy				else					echo good				fi				exit 0							

相关资源