代码搜索结果
找到约 2,917 项符合
Strip 的代码
makefile
CC = armv5l-linux-gcc
STRIP= armv5l-linux-strip
EXES=rtc
all: $(EXES)
rtc:max6900.c
$(CC) $^ -o $@
$(STRIP) $@
install:
cp ./rtc ../../initrd/sbin -f
clean:
rm rtc -f
makefile
CC = armv5l-linux-gcc
STRIP= armv5l-linux-strip
EXES=temp
all: $(EXES)
temp:lm75.c
$(CC) $^ -o $@
$(STRIP) $@
install:
cp ./temp ../../initrd/sbin -f
clean:
rm temp -f
makefile
CC = armv5l-linux-gcc
STRIP= armv5l-linux-strip
EXES=fan
all: $(EXES)
fan:max6650.c
$(CC) $^ -o $@
$(STRIP) $@
install:
cp ./fan ../../initrd/sbin -f
clean:
rm fan -f
spiralplane.m
%SPIRALPLANE Archimedean spiral of N turns
% This script "bends" the strip (strip.mat) in order to get
% a spiral
%
% The following parameters need to be specified:
%
% Number of turns
spiralplane.m
%SPIRALPLANE Archimedean spiral of N turns
% This script "bends" the strip (strip.mat) in order to get
% a spiral
%
% The following parameters need to be specified:
%
% Number of turns
如何实现类似于显示属性的分页效果.txt
你 可 以 使 用 VB的 Tabbed Dialog控 件 或 Common Controls中 的 TabStrip控 件 来 实 现 这 样 的 效 果 ( 参 考 QA002803 “Tabbed Dialog控件和tab strip控件有什么不同”) 。 你 可 以 在 VB6中 选 择 菜 单 “ 工 程 |添 加 窗 体 ” , 然 后 在 对 话 框 中 选 择 “ 选 项 对 话
kernel.asm
; 编译链接方法
; (ld 的‘-s’选项意为“strip all”)
;
; [root@XXX XXX]# nasm -f elf kernel.asm -o kernel.o
; [root@XXX XXX]# ld -s kernel.o -o kernel.bin
; [root@XXX XXX]#
[section .text] ; 代码在此
global
kernel.asm
; 编译链接方法
; (ld 的‘-s’选项意为“strip all”)
;
; [root@XXX XXX]# nasm -f elf kernel.asm -o kernel.o
; [root@XXX XXX]# ld -s kernel.o -o kernel.bin
; [root@XXX XXX]#
[section .text] ; 代码在此
global
makefile
#
# GNU makefile
#
CC = gcc
INCL =
CFLAGS = -O6 -s -I../include
LINK = gcc
STRIP = strip
BIND = coff2exe
RM = del
LFLAGS = -L../lib
LIBS = -lm -lpdc~1 -l
makefile
CROSS = /opt/host/armv4l/bin/armv4l-unknown-linux-
CC = $(CROSS)gcc
AR = $(CROSS)ar
STRIP = $(CROSS)strip
EXEC = rw_addr
OBJS = rw_addr.o
all: $(EXEC)
$(EXEC): $(OBJS)
$(CC) $(LDFLAGS) -Wall -o $@