代码搜索结果
找到约 2,917 项符合
Strip 的代码
matain.sh
armv5l-linux-gcc matain.c -o matain -g -O2 -Wall -Wstrict-prototypes -pipe -D_REENTRANT -lminigui -lpthread -lc -lm -lpng -ljpeg -lttf
armv5l-linux-strip matain
cd xmodem
armv5l-linux-gcc crc16.c crc1
.nandlink.o.flags
ifeq (nand.o nand_ecc.o nand_ids.o k9k8g08u0a.o,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y))))
FILES_FLAGS_UP_TO_DATE += nandlink.o
endif
.devlink.o.flags
ifeq (,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y))))
FILES_FLAGS_UP_TO_DATE += devlink.o
endif
.mapslink.o.flags
ifeq (bulverde.o,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y))))
FILES_FLAGS_UP_TO_DATE += mapslink.o
endif
.video.o.flags
ifeq (videodev.o camera.o,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y))))
FILES_FLAGS_UP_TO_DATE += video.o
endif
p1-48.cpp
#include
main()
{
//声明字符型数组和指针变量
char str[10];
char *strip=str;
//输入输出
coutstr; //用字符数组输入字符串
cout
makefile
BIN =../bin
OBJ =../obj
CC=gcc
STRIP=strip
#CFLAG=-c -O2 -DGNU -DSIMU_TEST -DFILE_SAVE
CFLAG=-c -g
CPPFLAG=-c
INCLDIR=-I.
LIBDIR=-L.
LIBS=
OBJS = test.o SimpleFTP.o
all:test
clean:
rm -f *.o
te
p1-48.cpp
#include
main()
{
//声明字符型数组和指针变量
char str[10];
char *strip=str;
//输入输出
coutstr; //用字符数组输入字符串
cout
makefile
CC = gcc
CFLAGS = -Wall
all: tftpc tftpd
tftpc: tftpc.c
$(CC) $(CFLAGS) -o tftpc tftpc.c
tftpd: tftpd.c
$(CC) $(CFLAGS) -o tftpd tftpd.c
clean:
rm -f tftpd tftpc
strip:
strip tftpd tftpc
makefile
CROSS =arm-linux-
CC = $(CROSS)gcc
AR = $(CROSS)ar
LD = $(CROSS)ld
STRIP = $(CROSS)strip
EXEC_PUT = test.o
OBJS_PUT = test_led.c
all: $(EXEC_PUT)
$(EXEC_PUT): $(OBJS_PUT)
$(CC) $(LDFLAGS) -Wall -o