代码搜索结果

找到约 2,917 项符合 Strip 的代码

makefile

CLASSDIR = $(HOME)/src/class BINDIR = /mnt/nfs/trn/bin CC = $(join $(CC_PREFIX),arm-linux-g++) CXXFLAGS += -I$(strip $(INCLUDEDIR)) -L$(strip $(LIBDIR)) -I$(strip $(CLASSDIR)) LIBS= -lc -lm VPATH =

p1-48.cpp

#include main() { //声明字符型数组和指针变量 char str[10]; char *strip=str; //输入输出 coutstr; //用字符数组输入字符串 cout

.c.o.flags

ifeq (:,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y)))) FILES_FLAGS_UP_TO_DATE += c.o endif

makefile_mipsel

CC=mipsel-linux-gcc CFLAGS = --static -mtune=r3000 STRIP=mipsel-linux-strip TARGET=STB_AAA TYPE_DIR=-I../../tsplayer/include MENU_OBJ=STB_AAA.o MENU_OBJ+= md5c.o mddriver.o $(TARGET):$(MENU_

p1-48.cpp

#include main() { //声明字符型数组和指针变量 char str[10]; char *strip=str; //输入输出 coutstr; //用字符数组输入字符串 cout

local.rules

ifeq ($(strip $(BISON_HOME)), ) BISON_HOME = /opt/bison1.875c endif ifeq ($(strip $(FLEX_HOME)), ) FLEX_HOME = /opt/flex2.5.4 endif

strip.m

function net = strip(net, tolerance) % STRIP % % Delete support vectors from a support vector classification network for which % the magnitude of the corresponding weight is less than a given to

makefile

OBJ=vox.o adpcm.o DOBJ=devox.o adpcm.o CC=gcc CFLAGS=-g INSTALLDIR=/usr/local all: devox vox install: all strip -g vox strip -g devox cp vox $(INSTALLDIR)/bin cp devox $(INSTALLDIR)/bin cp vo

p1-48.cpp

#include main() { //声明字符型数组和指针变量 char str[10]; char *strip=str; //输入输出 coutstr; //用字符数组输入字符串 cout

makefile

CC = arm-linux-gcc STRIP = arm-linux-strip EXEC = gpio SRC = gpio.c all: $(EXEC) $(EXEC): $(OBJS) $(CC) -o $(EXEC) $(SRC) $(STRIP) $(EXEC) clean: rm -f $(EXEC)