1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

New option --list-targets

git-svn-id: svn://svn.cc65.org/cc65/trunk@2945 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-03-20 09:36:22 +00:00
parent e1b4d06d28
commit 0bbcaa5c1a

View File

@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 1999-2003 Ullrich von Bassewitz */
/* (C) 1999-2004 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@ -644,6 +644,7 @@ static void Usage (void)
" --include-dir dir\tSet a compiler include directory path\n"
" --lib file\t\tLink this library\n"
" --lib-path path\tSpecify a library search path\n"
" --list-targets\tList all available targets\n"
" --listing\t\tCreate an assembler listing\n"
" --mapfile name\tCreate a map file\n"
" --memory-model model\tSet the memory model\n"
@ -889,6 +890,23 @@ static void OptListing (const char* Opt attribute ((unused)),
static void OptListTargets (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
/* List all targets */
{
unsigned I;
/* List the targets */
for (I = TGT_NONE; I < TGT_COUNT; ++I) {
printf ("%s\n", TargetNames[I]);
}
/* Terminate */
exit (EXIT_SUCCESS);
}
static void OptMapFile (const char* Opt attribute ((unused)), const char* Arg)
/* Create a map file */
{
@ -1088,6 +1106,7 @@ int main (int argc, char* argv [])
{ "--include-dir", 1, OptIncludeDir },
{ "--lib", 1, OptLib },
{ "--lib-path", 1, OptLibPath },
{ "--list-targets", 0, OptListTargets },
{ "--listing", 0, OptListing },
{ "--mapfile", 1, OptMapFile },
{ "--memory-model", 1, OptMemoryModel },