代码搜索结果
找到约 2,917 项符合
Strip 的代码
makefile
CC = arm-linux-gcc
STRIP = arm-linux-strip
EXEC = sd_card
SRC = sd_card.c
all: $(EXEC)
$(EXEC): $(OBJS)
$(CC) -o $(EXEC) $(SRC)
$(STRIP) $(EXEC)
clean:
rm -f $(EXEC)
kommandoer.txt
/usr/local/mipsel-linux/bin/gcc
: compile og link
-c : laver kun compile
-S : laver en .s fil
/usr/local/mipsel-linux/bin/strip
: Fjerner nogle ting fra filen men ikke kode!
makefile
CROSS_COMPILE = arm-linux-
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)gcc
STRIP = $(CROSS_COMPILE)strip
INCLUDE = -I. -I../TTMP/ -I../TTMP/Linux -I../golinux/include/barcelona
CPPFLAGS = $(I
install-sh
#! /bin/bash
. install-defs.sh
$CP fastjar ${BINDIR}
$STRIP ${BINDIR}/fastjar
$CHMOD 755 ${BINDIR}/fastjar
install-defs.sh.in
CP=@CP@
STRIP=@STRIP@
CHMOD=@CHMOD@
prefix=@prefix@
exec_prefix=@exec_prefix@
BINDIR=@bindir@
install-defs.sh
CP=/bin/cp
STRIP=/usr/bin/strip
CHMOD=/bin/chmod
prefix=/usr/local
exec_prefix=${prefix}
BINDIR=${exec_prefix}/bin
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
如何实现类似于显示属性的分页效果.txt
你 可 以 使 用 VB的 Tabbed Dialog控 件 或 Common Controls中 的 TabStrip控 件 来 实 现 这 样 的 效 果 ( 参 考 QA002803 “Tabbed Dialog控件和tab strip控件有什么不同”) 。 你 可 以 在 VB6中 选 择 菜 单 “ 工 程 |添 加 窗 体 ” , 然 后 在 对 话 框 中 选 择 “ 选 项 对 话
cfutil.mak
all: cfar.o obj4lb.o cfls.o
# it is always best to save a known good copy of oxlib.cff
# before updating cfar.o
cfar.o: cfar.c
gcc -O2 -c -DSKELETON cfar.c
strip -x cfar.o
cfrun cfar.o -rt2
makefile
ifeq ($(KERNELRELEASE),)
STRIP = arm-linux-strip
PWD := $(shell pwd)
.PHONY: modules clean
modules_install:
$(MAKE) -C $(KERNEL_SRC_DIR) SUBDIRS=$(PWD) $@
modules:
$(MAKE) -C $(KERNEL_SRC_DIR) SU