代码搜索结果
找到约 2,917 项符合
Strip 的代码
makefile
all: dasdfmt
dasdfmt: dasdfmt.c
$(CROSS_COMPILE)gcc -o $@ $^
$(STRIP) $@
clean:
rm -f dasdfmt
makefile
all: silo
silo.o: silo.c
$(CROSS_COMPILE)gcc -c -o silo.o -O2 silo.c
cfg.o: cfg.c
$(CROSS_COMPILE)gcc -c -o cfg.o -O2 cfg.c
silo: silo.o cfg.o
$(CROSS_COMPILE)gcc -o $@ $^
$(STRIP) $@
clean:
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
mkprep.c
/*
* Makes a prep bootable image which can be dd'd onto
* a disk device to make a bootdisk. Will take
* as input a elf executable, strip off the header
* and write out a boot image as:
* 1) defa
strip.c
/*
* Copyright 1996 The Board of Trustees of The Leland Stanford
* Junior University. All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this
* software and its documentatio
if_strip.h
/*
* if_strip.h --
*
* Definitions for the STRIP interface
*
* Copyright 1996 The Board of Trustees of The Leland Stanford
* Junior University. All Rights Reserved.
*
* Permission to use,
realms
# /etc/radiusclient/realms
#
# Handle realm @netservers.co.uk on an internal RADIUS server
# (note the server must be told to strip the realm)
#authserver netservers.co.uk 192.168.1.1:1812
#acctserve
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]#