disabled flavor sorting

This commit is contained in:
bebbo 2018-05-12 20:05:15 +02:00
parent dbd93c69e4
commit 3713addeaa
1 changed files with 6 additions and 4 deletions

View File

@ -75,24 +75,26 @@ static bfd_boolean is_sysrooted_pathname
PARAMS ((const char *, bfd_boolean));
/* Flavour support. */
#if 0
static int flavors_cmp PARAMS ((const void *f1, const void *f2));
#endif
static int n_flavors, flavors_len;
static char **flavors;
#if 0
static int
flavors_cmp (f1, f2)
const void *f1, *f2;
{
return strcmp (*(char **)f1, *(char **)f2);
}
#endif
void
ldfile_sort_flavors ()
{
#if 0
if (n_flavors > 1)
qsort ((void *) flavors, n_flavors, sizeof (char **), flavors_cmp);
#endif
}
void