mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
Initial revision
This commit is contained in:
3
binutils/is-strip.c
Normal file
3
binutils/is-strip.c
Normal file
@ -0,0 +1,3 @@
|
||||
/* Linked with copy.o to flag that this program is 'strip' (not 'copy'). */
|
||||
|
||||
int is_strip = 1;
|
4
binutils/maybe-strip.c
Normal file
4
binutils/maybe-strip.c
Normal file
@ -0,0 +1,4 @@
|
||||
/* Linked with copy.o to flag that this program decides at runtime
|
||||
(using argv[0] if it is is 'strip' or 'copy'. */
|
||||
|
||||
int is_strip = -1;
|
3
binutils/not-strip.c
Normal file
3
binutils/not-strip.c
Normal file
@ -0,0 +1,3 @@
|
||||
/* Linked with copy.o to flag that this program is 'copy' (not 'strip'). */
|
||||
|
||||
int is_strip = 0;
|
Reference in New Issue
Block a user