代码搜索:objdump
找到约 4,575 项符合「objdump」的源代码
代码结果 4,575
www.eeworm.com/read/230609/14280799
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-
www.eeworm.com/read/230604/14280826
makefile
leds : head.S main.c
arm-linux-gcc -c -o head.o head.S
arm-linux-gcc -c -o main.o main.c
arm-linux-ld -Ttest.lds head.o main.o -o leds_tmp.o
arm-linux-objcopy -O binary -S leds_tmp.o leds
arm-l
www.eeworm.com/read/362272/10008078
makefile
sdram : head.s sdram.c
arm-linux-gcc -c -o head.o head.s
arm-linux-gcc -c -o sdram.o sdram.c
arm-linux-ld -Ttext 0x30000000 head.o sdram.o -o sdram_tmp.o
arm-linux-objcopy -O binary -S sdram_tmp
www.eeworm.com/read/421129/10753811
makefile
objs := head.o init.o interrupt.o main.o
int.bin: $(objs)
arm-linux-ld -Ttext 0x00000000 -o int_elf $^
arm-linux-objcopy -O binary -S int_elf $@
arm-linux-objdump -D -m arm int_elf > int.dis
www.eeworm.com/read/315327/13545852
makefile
sdram : head.s sdram.c
arm-linux-gcc -c -o head.o head.s
arm-linux-gcc -c -o sdram.o sdram.c
arm-linux-ld -Ttext 0x30000000 head.o sdram.o -o sdram_tmp.o
arm-linux-objcopy -O binary -S sdram_tmp
www.eeworm.com/read/477944/6726323
makefile
sdram.bin : head.S leds.c
arm-linux-gcc -c -o head.o head.S
arm-linux-gcc -c -o leds.o leds.c
arm-linux-ld -Ttext 0x30000000 head.o leds.o -o sdram_elf
arm-linux-objcopy -O binary -S sdram_elf s
www.eeworm.com/read/477944/6726326
makefile
objs := head.o init.o interrupt.o main.o
int.bin: $(objs)
arm-linux-ld -Ttext 0x00000000 -o int_elf $^
arm-linux-objcopy -O binary -S int_elf $@
arm-linux-objdump -D -m arm int_elf > int.dis
%.o
www.eeworm.com/read/343165/11967588
makefile
sdram.bin : head.S leds.c
arm-linux-gcc -c -o head.o head.S
arm-linux-gcc -c -o leds.o leds.c
arm-linux-ld -Ttext 0x30000000 head.o leds.o -o sdram_elf
arm-linux-objcopy -O binary -S sdram_elf s
www.eeworm.com/read/343165/11967595
makefile
objs := head.o init.o interrupt.o main.o
int.bin: $(objs)
arm-linux-ld -Ttext 0x00000000 -o int_elf $^
arm-linux-objcopy -O binary -S int_elf $@
arm-linux-objdump -D -m arm int_elf > int.dis
%.o
www.eeworm.com/read/230610/14280786
makefile
sdram : head.s sdram.c
arm-linux-gcc -c -o head.o head.s
arm-linux-gcc -c -o sdram.o sdram.c
arm-linux-ld -Ttext 0x30000000 head.o sdram.o -o sdram_tmp.o
arm-linux-objcopy -O binary -S sdram_tmp