X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=support%2Fcpp2%2Fversion.c;h=310c138e308ee47a383f2e189204ba5f73449f08;hb=d8880177eb975f240141e0b9abf3a58c3f99b1cb;hp=1918d6960a4bb9202445f3169314838c1ca781c4;hpb=4ca42c5ce64df444d45f171ed6414eb8dc42de88;p=fw%2Fsdcc diff --git a/support/cpp2/version.c b/support/cpp2/version.c index 1918d696..310c138e 100644 --- a/support/cpp2/version.c +++ b/support/cpp2/version.c @@ -1,11 +1,17 @@ #include "version.h" -/* This is the string reported as the version number by all components - of the compiler. If you distribute a modified version of GCC, - please modify this string to indicate that, e.g. by putting your - organization's name in parentheses at the end of the string. */ +/* This is the trailing component of the string reported as the + version number by all components of the compiler. For an official + FSF release, it is empty. If you distribute a modified version of + GCC, please change this string to indicate that. The suggested + format is a leading space, followed by your organization's name + in parentheses. You may also wish to include a number indicating + the revision of your modified compiler. */ -const char version_string[] = "3.4.6 + SDCC"; +#define BASEVER "4.2.0" +#define DATESTAMP +#define DEVPHASE +#define VERSUFFIX " + SDCC" /* This is the location of the online document giving instructions for reporting bugs. If you distribute a modified version of GCC, @@ -15,3 +21,8 @@ const char version_string[] = "3.4.6 + SDCC"; not bugs in your modifications.) */ const char bug_report_url[] = ""; + +/* The complete version string, assembled from several pieces. + BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile. */ + +const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;