Initial revision
This commit is contained in:
parent
bee36ac3e7
commit
ef82baf8c5
4 changed files with 13 additions and 0 deletions
3
binutils/is-ranlib.c
Normal file
3
binutils/is-ranlib.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* Linked with ar.o to flag that this program is 'ranlib' (not 'ar'). */
|
||||
|
||||
int is_ranlib = 1;
|
4
binutils/maybe-ranlib.c
Normal file
4
binutils/maybe-ranlib.c
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* Linked with ar.o to flag that this program decides at runtime
|
||||
(using argv[0] if it is is 'ar' or 'ranlib'. */
|
||||
|
||||
int is_ranlib = 0;
|
3
binutils/not-ranlib.c
Normal file
3
binutils/not-ranlib.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* Linked with ar.o to flag that this program is 'ar' (not 'ranlib'). */
|
||||
|
||||
int is_ranlib = -1;
|
3
binutils/ranlib.sh
Executable file
3
binutils/ranlib.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
# A simple ranlib script, to use less disk space than a ranlib program.
|
||||
ar s $1
|
Loading…
Reference in a new issue