代码搜索:objcopy
找到约 940 项符合「objcopy」的源代码
代码结果 940
www.eeworm.com/read/212071/15166131
makefile
VPATH=$(GRLIB)/software/leon3
XCC=sparc-elf-gcc
XAS=sparc-elf-gcc -c -I.
XAR=sparc-elf-ar
XCFLAGS=-O2 -g -msoft-float
XLDFLAGS=-L./ lib3tests.a
PROGS = report_device apbuart divtest multest regtest \
www.eeworm.com/read/161121/5557910
makefile
# BK Id: SCCS/s.Makefile 1.15 01/11/02 10:46:06 trini
#
# Makefile for making ELF bootable images for booting on CHRP
# using Open Firmware.
#
# Geert Uytterhoeven September 1997
#
# Based on coffboot
www.eeworm.com/read/265791/11253500
makefile
# Project configuration:
OBJS = main.o interface.o tools.o spi.o
ASMS = main.s interface.s tools.s spi.s
BIN = main
#Hardware
MCU = atmega8
ROM_START = 0x000
#Compiler flags
CCFL
www.eeworm.com/read/334103/12633777
makefile
# Project configuration:
OBJS = main.o interface.o tools.o spi.o
ASMS = main.s interface.s tools.s spi.s
BIN = main
#Hardware
MCU = atmega8
ROM_START = 0x000
#Compiler flags
CCFL
www.eeworm.com/read/200724/15426513
avrproj_make
#----------------------------------------------------------------------------------
# ARM-GCC standard Makefile
# This makefile is to be used by including it from a project-specific makefile
# whic
www.eeworm.com/read/189912/8452983
makefile
##################################################
CROSS_COMPILE = m68k-elf-
export CROSS_COMPILE
#
# Include the make variables (CC, etc...)
#
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $
www.eeworm.com/read/189912/8453106
makefile~
##################################################
CROSS_COMPILE = m68k-elf-
export CROSS_COMPILE
#
# Include the make variables (CC, etc...)
#
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $
www.eeworm.com/read/290721/8465761
makefile
CFLAGS=-mmcu=at90s2313
CC=avr-gcc
sht.hex: sht.o
avr-objcopy -O ihex sht.o sht.hex
sht.o: sht.c
$(CC) $(CFLAGS) -o sht.o sht.c
all: sht.hex
clean:
rm -f *.hex *.o
ul:
uisp -dprog=avr910 -dser
www.eeworm.com/read/389152/8546547
makefile
KERNELDIR =
INCLUDEDIR = $(KERNELDIR)/include
CROSS_COMPILE =
AS =$(CROSS_COMPILE)as
LD =$(CROSS_COMPILE)ld
CC =$(CROSS_COMPILE)gcc
CPP =$(CC) -E
AR =$(CROSS_COMPILE)ar
NM
www.eeworm.com/read/163588/10153386
makefile
MCU = -mmcu=at90s2313
CC = avr-gcc
CFLAGS = $(MCU) -Wall -W -Wstrict-prototypes # --save-temps -v
#CFLAGS += -O3
#CFLAGS += -O2
CFLAGS += -Os
CFLAGS += -mtiny-stack -mcall-prologues
#CFLAGS += -mno-ta