mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
Recognize and handle -K PIC
This commit is contained in:
parent
f76215e0a6
commit
10c9620d4e
@ -1,3 +1,7 @@
|
||||
Fri Jul 12 20:54:19 1996 Michael Meissner <meissner@tiktok.cygnus.com>
|
||||
|
||||
* config/tc-ppc.c (md_parse_option): Recognize -K PIC.
|
||||
|
||||
Wed Jul 10 12:39:08 1996 Richard Henderson <rth@tamu.edu>
|
||||
|
||||
* config/tc-alpha.c (alpha_align): Change fill parameter
|
||||
|
@ -606,7 +606,7 @@ const int md_long_jump_size = 4;
|
||||
#endif
|
||||
|
||||
#ifdef OBJ_ELF
|
||||
CONST char *md_shortopts = "b:l:usm:VQ:";
|
||||
CONST char *md_shortopts = "b:l:usm:K:VQ:";
|
||||
#else
|
||||
CONST char *md_shortopts = "um:";
|
||||
#endif
|
||||
@ -651,6 +651,18 @@ md_parse_option (c, arg)
|
||||
return 0;
|
||||
|
||||
break;
|
||||
|
||||
case 'K':
|
||||
/* Recognize -K PIC */
|
||||
if (strcmp (arg, "PIC") == 0)
|
||||
{
|
||||
mrelocatable = true;
|
||||
ppc_flags |= EF_PPC_RELOCATABLE_LIB;
|
||||
}
|
||||
else
|
||||
return 0;
|
||||
|
||||
break;
|
||||
#endif
|
||||
|
||||
case 'm':
|
||||
|
Loading…
Reference in New Issue
Block a user