代码搜索:objcopy
找到约 940 项符合「objcopy」的源代码
代码结果 940
www.eeworm.com/read/345479/11814433
makefile
PRG = yinyue
OBJ = yinyue.o
MCU_TARGET = atmega128
OPTIMIZE = -O2
DEFS =
LIBS =
# You should not have to change anything below here.
C
www.eeworm.com/read/343967/11916504
makefile
PRG =usart3_step_lcd
OBJ =usart3_step_lcd.o
MCU_TARGET = atmega128
OPTIMIZE = -O2
DEFS =
LIBS =
# You should not have to change anything b
www.eeworm.com/read/161121/5557599
makefile
#
# Makefile for rescue code
#
ifndef TOPDIR
TOPDIR = ../../../..
HPATH = $(TOPDIR)/include
export HPATH
endif
CC = gcc-cris -mlinux -I $(TOPDIR)/include
CFLAGS = -O2
LD = gcc-cris -mlinux -nostdlib
O
www.eeworm.com/read/155397/5623277
makefile
AS = avr-gcc -x assembler-with-cpp
LD = avr-gcc -mmcu=at90s2343
CC = avr-gcc
FULLCC = gcc
OBJCOPY= avr-objcopy
CFLAGS = -c -O2 -Wall -I/usr/local/avr/include -I. -mmcu=at90s2343
#use for
www.eeworm.com/read/170835/9785988
makefile
PRG = 15.3
OBJ = 15.3.o
MCU_TARGET = atmega128
OPTIMIZE = -O2
DEFS =
LIBS =
# You should not have to change anything below here.
CC
www.eeworm.com/read/135319/13939579
makefile
flashloader.bin: flashloader.elf
arm-linux-objcopy -O binary $< $@
flashloader.elf: $(FlashFlag)_link.lds startup.S
arm-linux-gcc -D$(FlashFlag) -nostdlib -o $@ -Xlinker -T -Xlinker $^
www.eeworm.com/read/135319/13939614
makefile
bootloader.bin: bootloader.elf
arm-linux-objcopy -O binary $< $@
bootloader.elf: link.lds startup.S ../../bootloader.c ../../UART/uart.c ../../USB/usbrx.c progflash.c $(FlashFlag).c ../../Init/in
www.eeworm.com/read/135319/13939629
makefile
#############################
# Just for test
#############################
#FlashFlag = AMDFlash
#############################
bootloader.bin: bootloader.elf
arm-linux-objcopy -O binary $< $@
bo
www.eeworm.com/read/200892/15420616
makefile
flashloader.bin: flashloader.elf
arm-linux-objcopy -O binary $< $@
flashloader.elf: link.lds startup.S
arm-linux-gcc -nostdlib -o $@ -Xlinker -T -Xlinker $^
clean:
rm -f flashloader.elf flashl
www.eeworm.com/read/200892/15420625
makefile
bootloader.bin: bootloader.elf
arm-linux-objcopy -O binary $< $@
bootloader.elf: link.lds startup.S ../bootloader.c ../UART/uart.c ../USB/usbrx.c progflash.c ../Init/init.c
arm-linux-gcc -nostdli