Commit 9b783fc9 by Richard Kenner

(process_command): Add new switch, -dumpmachine.

From-SVN: r8102
parent 5619cc87
......@@ -2389,6 +2389,11 @@ process_command (argc, argv)
printf ("%s\n", version_string);
exit (0);
}
else if (! strcmp (argv[i], "-dumpmachine"))
{
printf ("%s\n", spec_machine);
exit (0);
}
else if (! strcmp (argv[i], "-print-libgcc-file-name"))
print_file_name = "libgcc.a";
else if (! strncmp (argv[i], "-print-file-name=", 17))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment