代码搜索:objdump
找到约 4,575 项符合「objdump」的源代码
代码结果 4,575
www.eeworm.com/read/343165/11967800
makefile
key_led.bin : crt0.S key_led.c
arm-linux-gcc -g -c -o crt0.o crt0.S
arm-linux-gcc -g -c -o key_led.o key_led.c
arm-linux-ld -Ttext 0x0000000 -g crt0.o key_led.o -o key_led_elf
arm-linux-objcopy
www.eeworm.com/read/230601/14280848
makefile
led_on_c : crt0.s led_on_c.c
arm-linux-gcc -g -c -o crt0.o crt0.s
arm-linux-gcc -g -c -o led_on_c.o led_on_c.c
arm-linux-ld -Ttext 0x0000000 -g crt0.o led_on_c.o -o led_on_c_tmp.o
arm-linux-objc
www.eeworm.com/read/230599/14280861
makefile
key_led : crt0.s key_led.c
arm-linux-gcc -g -c -o crt0.o crt0.s
arm-linux-gcc -g -c -o key_led.o key_led.c
arm-linux-ld -Ttext 0x0000000 -g crt0.o key_led.o -o key_led_tmp.o
arm-linux-objcopy -O
www.eeworm.com/read/188599/8525482
makefile
#################################################
# 改这里的路径为你实际使用的路径
PKG_INSTALL_DIR = /tmp/lpc_default_ram_install
# 改这里的宏为你要编译的文件名
TEST_FILE_NAME = twothreads.c
#######################
www.eeworm.com/read/417182/11001260
makefile
#################################################
# 改这里的路径为你实际使用的路径
PKG_INSTALL_DIR = /tmp/lpc_default_ram_install
# 改这里的宏为你要编译的文件名
TEST_FILE_NAME = twothreads.c
#######################
www.eeworm.com/read/312338/3672877
config external_tools_macosx.config
PATH_CONTIKI = ../../..
PATH_COOJA_CORE_RELATIVE = /platform/cooja
PATH_MAKE = make
PATH_LINKER = gcc
PATH_AR = ar
PATH_SHELL = sh
PATH_C_COMPILER = gcc
PATH_OBJDUMP= objdump
OBJDUMP_ARGS= -h
www.eeworm.com/read/424059/2019829
config external_tools_macosx.config
PATH_CONTIKI = ../../..
PATH_COOJA_CORE_RELATIVE = /platform/cooja
PATH_MAKE = make
PATH_LINKER = gcc
PATH_AR = ar
PATH_SHELL = sh
PATH_C_COMPILER = gcc
PATH_OBJDUMP= objdump
OBJDUMP_ARGS= -h
www.eeworm.com/read/259059/4346538
config external_tools_macosx.config
PATH_CONTIKI = ../../..
PATH_COOJA_CORE_RELATIVE = /platform/cooja
PATH_MAKE = make
PATH_LINKER = gcc
PATH_AR = ar
PATH_SHELL = sh
PATH_C_COMPILER = gcc
PATH_OBJDUMP= objdump
OBJDUMP_ARGS= -h
www.eeworm.com/read/191809/5161577
dounsreloc
#!/bin/sh
# objdump the reloc table, but strip off the headings and reloc
# numbers and sort the result. Intended for use in comparing reloc
# tables that may not be in the same order.
objdump +relo
www.eeworm.com/read/191809/5161583
dounssym
#!/bin/sh
# objdump the symbol table, but strip off the headings and symbol
# numbers and sort the result. Intended for use in comparing symbol
# tables that may not be in the same order.
objdump +s