aboutsummaryrefslogtreecommitdiff
path: root/binutils/bucomm.c
diff options
context:
space:
mode:
Diffstat (limited to 'binutils/bucomm.c')
-rw-r--r--binutils/bucomm.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/binutils/bucomm.c b/binutils/bucomm.c
index 401a3e4..bf0f799 100644
--- a/binutils/bucomm.c
+++ b/binutils/bucomm.c
@@ -168,6 +168,25 @@ list_supported_targets (name, f)
fprintf (f, " %s", bfd_target_vector[t]->name);
fprintf (f, "\n");
}
+
+/* List the supported architectures. */
+
+void
+list_supported_architectures (name, f)
+ const char *name;
+ FILE *f;
+{
+ const char** arch;
+
+ if (name == NULL)
+ fprintf (f, _("Supported architectures:"));
+ else
+ fprintf (f, _("%s: supported architectures:"), name);
+
+ for (arch = bfd_arch_list (); *arch; arch++)
+ fprintf (f, " %s", *arch);
+ fprintf (f, "\n");
+}
/* Display the archive header for an element as if it were an ls -l listing: