Recognize and handle -K PIC

This commit is contained in:
Michael Meissner 1996-07-13 00:54:55 +00:00
parent f76215e0a6
commit 10c9620d4e
2 changed files with 17 additions and 1 deletions

View File

@ -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

View File

@ -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':