代码搜索结果

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

busybox.mk

############################################################# # # busybox # ############################################################# #ifeq ($(strip $(BR2_PACKAGE_BUSYBOX_SNAPSHOT)),y) ## Be awar

.nandlink.o.flags

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

.mapslink.o.flags

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

objstrip.c

/* * arch/alpha/boot/tools/objstrip.c * * Strip the object file headers/trailers from an executable (ELF or ECOFF). * * Copyright (C) 1996 David Mosberger-Tang. */ /* * Converts an ECOFF or ELF

makefile.osx

# # MAC OSX SPECIFIC CONFIGURATION # # don't strip executables and bundles for now until we figure out the proper way # to do it (flags). STRIP = \# DESTDIR ?= LIBDIR = $(DESTDIR)/usr/lib SRCS +=

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]#

foo.asm

; 编译链接方法 ; (ld 的‘-s’选项意为“strip all”) ; ; [root@XXX XXX]# nasm -f elf foo.asm -o foo.o ; [root@XXX XXX]# gcc -c bar.c -o bar.o ; [root@XXX XXX]# ld -s hello.o bar.o -o foobar ; [root@XXX XXX]#