代码搜索:objdump
找到约 4,575 项符合「objdump」的源代码
代码结果 4,575
www.eeworm.com/read/343165/11967897
makefile
CC = arm-linux-gcc
LD = arm-linux-ld
AR = arm-linux-ar
OBJCOPY = arm-linux-objcopy
OBJDUMP = arm-linux-objdump
INCLUDEDIR := $(shell pwd)/include
CFLAGS := -Wall -O2
CPPFLAGS :=
www.eeworm.com/read/206377/15296099
makefile
CROSS_COMPILE=armv4l-unknown-linux-
AS =$(CROSS_COMPILE)as
LD =$(CROSS_COMPILE)ld
#CC =$(CROSS_COMPILE)gcc
CC =g++
CPP =$(CC) -E
AR =$(CROSS_COMPILE)ar
NM =$(CROSS_CO
www.eeworm.com/read/149022/12409277
mkp
#
sparc-rtems-gcc -N -nostdlib -nostdinclude -T linkboot -e _hardreset $* -lgcc
sparc-rtems-objdump -s a.out > rom.dat
sparc-rtems-objdump -d a.out > rom.s
www.eeworm.com/read/267222/11190071
makefile
ifndef TURBO_DIR
TURBO_DIR = ../../../turbo-devel
endif
TURBO_TAG = --turbo-manifest "Version: 0.1.1 Vendor: BLADOX" #--turbo-verbose
INCDIR = -I$(TURBO_DIR)/include -I.
LIBDIR = $(TURBO_DIR)/lib
C
www.eeworm.com/read/112818/15476073
makefile
# Makefile - Sample makefile to demonstrate the use of the -mflat compiler
# option, and the mflat libraries
#
# See the readme.txt file for more information
CCOPTS = -I ../../inc -g -O
www.eeworm.com/read/244517/12858783
makefile
CROSS_COMPILE = arm-elf-
PROJ_NAME = lab2
OBJS = lab2.o asm_func.o
MAIN_ENTRY = my_main
TEXT_ADDR = 0x10000
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc
CPP = $(CC) -E
AR
www.eeworm.com/read/141654/5769475
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/135688/13910043
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/149022/12409332
mkr
#
sparc-rtems-gcc -N -nostdlib -nostdinclude -mv8 -T ./linkleon -e _hardreset \
$* -lgcc
sparc-rtems-size a.out
sparc-rtems-objdump -s a.out > ram.dat
sparc-rtems-objdump -d a.out > ram.s
www.eeworm.com/read/332149/12776129
makefile
CROSS_COMPLILE =arm-unknown-linux-gnu-
# Make variables (CC, etc...)
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc
CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
NM = $(CROS