代码搜索:objdump
找到约 4,575 项符合「objdump」的源代码
代码结果 4,575
www.eeworm.com/read/114188/15067786
htm 00000002.htm
BBS水木清华站∶精华区
BBS水木清华站∶精华区
objdump... 这支程式躺在你电脑里好
www.eeworm.com/read/161121/5555745
makefile
#
# Makefile for a ramdisk image
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something sp
www.eeworm.com/read/193097/8253626
makefile
##########################################################################
# complie and linker
##########################################################################
CC = arm-elf-gcc
AS
www.eeworm.com/read/335859/12492134
makefile
TOPDIR := $(shell /bin/pwd)
export TOPDIR
CC=arm-linux-gcc
LD=arm-linux-ld
OBJCOPY=arm-linux-objcopy
OBJDUMP=arm-linux-objdump
export TOP_CFLAGS=-Werror -O2 -Wall -fPIC -mcpu=arm9tdmi -I../include -
www.eeworm.com/read/335859/12492174
makefile
TOPDIR := $(shell /bin/pwd)
export TOPDIR
CC=arm-linux-gcc
LD=arm-linux-ld
OBJCOPY=arm-linux-objcopy
OBJDUMP=arm-linux-objdump
export TOP_CFLAGS=-Werror -O2 -Wall -fPIC -mcpu=arm9tdmi -I../include -
www.eeworm.com/read/113714/15450318
makefile
##########################################################################
# complie and linker
##########################################################################
#CC = janus-el
www.eeworm.com/read/110425/15533948
makefile
CROSS_COMPILE = se3208-elf-
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc
CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
NM = $(CROSS_COMPILE)nm
STRIP = $(CROSS_COM
www.eeworm.com/read/105860/15657757
makefile
CROSS_COMPILE = se3208-elf-
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc
CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
NM = $(CROSS_COMPILE)nm
STRIP = $(CROSS_COM
www.eeworm.com/read/348097/11612301
makefile
###
### Copyright (c) 2004 Equator Technologies, Inc.
###
# Name and type of the target for this Makefile
APP_TARGET := fix_fft.out
# Object files that compose the target
OBJS :=
www.eeworm.com/read/152843/5657344
check-gas
#!/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' ')
r