代码搜索结果

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

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

# Included distributions: # 1. experimental # 2. normal # 3. pareto # 4. paretonormal include ../../Config ifeq ($(strip $(DISTRIBUTION)),) DISTRIBUTION= -DUSE_EXPERIMENTAL -DDISTRIBUTION_NAME="\"e

.nand_ecc.o.flags

ifeq (-I/home/plg/vivi_2440_temp/vivi/include -I/usr/local/arm/2.95.3/include -Wall -Wstrict-prototypes -O2 -fPIC -fomit-frame-pointer -mapcs-32 -mshort-load-bytes -msoft-float,$(strip $(subst $(comma

.nandlink.o.flags

ifeq (nand_ecc.o smc_core_2440.o bon.o bon.o,$(strip $(subst $(comma),:,$(EXTRA_LDFLAGS) $(obj-y)))) FILES_FLAGS_UP_TO_DATE += nandlink.o endif

.smc_core_2440.o.flags

ifeq (-I/home/plg/vivi_2440_temp/vivi/include -I/usr/local/arm/2.95.3/include -Wall -Wstrict-prototypes -O2 -fPIC -fomit-frame-pointer -mapcs-32 -mshort-load-bytes -msoft-float,$(strip $(subst $(comma

.bon.o.flags

ifeq (-I/home/plg/vivi_2440_temp/vivi/include -I/usr/local/arm/2.95.3/include -Wall -Wstrict-prototypes -O2 -fPIC -fomit-frame-pointer -mapcs-32 -mshort-load-bytes -msoft-float,$(strip $(subst $(comma

.s3c2440_flash.o.flags

ifeq (-I/home/plg/vivi_2440_temp/vivi/include -I/usr/local/arm/2.95.3/include -Wall -Wstrict-prototypes -O2 -fPIC -fomit-frame-pointer -mapcs-32 -mshort-load-bytes -msoft-float,$(strip $(subst $(comma

.mapslink.o.flags

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

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

hello.asm

; 编译链接方法 ; (ld 的‘-s’选项意为“strip all”) ; ; [root@XXX XXX]# nasm -f elf hello.asm -o hello.o ; [root@XXX XXX]# ld -s hello.o -o hello ; [root@XXX XXX]# ./hello ; Hello, world! ; [root@XXX XXX]#