From: uz Date: Thu, 5 Aug 2010 20:41:27 +0000 (+0000) Subject: Output version information into the debug file. X-Git-Tag: V2.13.3~668 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=12e7cc010d4abab7b4d85d950d9b6533d6b98ea1;p=cc65 Output version information into the debug file. git-svn-id: svn://svn.cc65.org/cc65/trunk@4783 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/dbgfile.c b/src/ld65/dbgfile.c index b3c7e9fe9..6063dc759 100644 --- a/src/ld65/dbgfile.c +++ b/src/ld65/dbgfile.c @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 2003 Ullrich von Bassewitz */ -/* Römerstraße 52 */ -/* D-70794 Filderstadt */ -/* EMail: uz@cc65.org */ +/* (C) 2003-2010, Ullrich von Bassewitz */ +/* Roemerstrasse 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -64,6 +64,9 @@ void CreateDbgFile (void) Error ("Cannot create debug file `%s': %s", DbgFileName, strerror (errno)); } + /* Output version information */ + fprintf (F, "version\tmajor=1,minor=0\n"); + /* Clear the debug sym table (used to detect duplicates) */ ClearDbgSymTable ();