代码搜索结果

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

strip.1

.\" Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 1998, 2000 Free Software Foundation .\" See section COPYING for conditions for redistribution .TH strip 1 "5 November 1991" "Free Software Foundation" "

maybe-strip.c

/* Linked with objcopy.o to flag that this program decides at runtime (using argv[0] if it is is 'strip' or 'objcopy'. */ int is_strip = -1;

is-strip.c

/* Linked with objcopy.o to flag that this program is 'strip' (not 'objcopy'). */ int is_strip = 1;

not-strip.c

/* Linked with objcopy.o to flag that this program is 'objcopy' (not 'strip'). */ int is_strip = 0;

strip.c

/* strip - remove symbols. Author: Dick van Veen */ #include #include #include #include #include #include #include #in