代码搜索:objdump

找到约 4,575 项符合「objdump」的源代码

代码结果 4,575
www.eeworm.com/read/407665/11412383

makefile

CC=sparc-rtems-gcc CFLAGS=-O2 LDFLAGS=-N -nostdlib -T ./linkleon -e _hardreset locore1.o LIBS=-L/opt/rtems/sparc-rtems/lib -L/usr/local/leon/sparc-rtems/lib \ -lgcc -lm all: tests tests: locore1
www.eeworm.com/read/149022/12409244

makefile

CC=sparc-rtems-gcc CFLAGS=-O2 -g -mv8 --pipe LDFLAGS=-N -nostdlib -nostdinclude -mv8 -T ./linkleon -e _hardreset locore1.o all: tests tests: locore1.o leon_test simfiles simfiles: ram.dat r
www.eeworm.com/read/230615/14280647

makefile

uart : head.s main.c init.c s3c2410.h serial.h arm-linux-gcc -c -o head.o head.s arm-linux-gcc -c -o init.o init.c arm-linux-gcc -c -o serial.o serial.c arm-linux-gcc -c -o main.o main.c arm-li
www.eeworm.com/read/230614/14280662

makefile

timer : head.s main.c init.c s3c2410.h interrupt.c interrupt.h arm-linux-gcc -c -o head.o head.s arm-linux-gcc -c -o init.o init.c arm-linux-gcc -c -o interrupt.o interrupt.c arm-linux-gcc -c -
www.eeworm.com/read/260657/11709425

txt 利用重载技巧实现最小代码尺寸.txt

/* * 源自: NiosII.cublog.cn * 作者: 蔡伟纲 * 声明: 本源码版权归作者所有,任何单位或个人不得以任何方式公开传播或转载. * 功能: 利用重载技巧实现最小代码尺寸; * 原理: 通过重载alt_main()函数实现; * 注意事项: * 1.在main函数之前,Crt0.S已经完成了下面的初始化工作: * (1) 指令和数据缓存初
www.eeworm.com/read/205736/6933608

makefile

# #makefile for helloforSkyeye # #author: SU Hang #Date: 2004-08-28 #begin CC=arm-elf-gcc LD=arm-elf-ld CFLAGS= -c -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -pipe -g -mapcs-32 -march
www.eeworm.com/read/448659/7527514

makefile

# #makefile for helloforSkyeye # #author: SU Hang #Date: 2004-08-28 #begin CC=arm-elf-gcc LD=arm-elf-ld CFLAGS= -c -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -pipe -g -mapcs-32 -march
www.eeworm.com/read/378232/9240044

makefile

objs := head.o init.o leds.o mmu.bin : $(objs) arm-linux-ld -Tmmu.lds -o mmu_elf $^ arm-linux-objcopy -O binary -S mmu_elf $@ arm-linux-objdump -D -m arm mmu_elf > mmu.dis %.o:%.c arm-linux-gcc
www.eeworm.com/read/378226/9240502

makefile

objs := head.o init.o serial.o main.o uart.bin: $(objs) arm-linux-ld -Tuart.lds -o uart_elf $^ arm-linux-objcopy -O binary -S uart_elf $@ arm-linux-objdump -D -m arm uart_elf > uart.dis %.o:%.c
www.eeworm.com/read/362268/10008142

makefile

nand : head.s main.c init.c arm-linux-gcc -c -o head.o head.s arm-linux-gcc -c -o init.o init.c arm-linux-gcc -c -o main.o main.c arm-linux-ld -Tnand.lds head.o init.o main.o -o nand_tmp.o arm-