mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 14:30:48 +00:00
Initial revision
This commit is contained in:
parent
572acbbedc
commit
cf0cdb8751
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;
|
Loading…
Reference in New Issue
Block a user