aboutsummaryrefslogtreecommitdiff
path: root/gcc/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/version.c')
-rw-r--r--gcc/version.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/gcc/version.c b/gcc/version.c
index 483ecdf0362..b23c45825b7 100644
--- a/gcc/version.c
+++ b/gcc/version.c
@@ -5,7 +5,19 @@
please modify this string to indicate that, e.g. by putting your
organization's name in parentheses at the end of the string. */
-const char version_string[] = "4.0.0 20050215 (experimental)";
+/* APPLE LOCAL begin Apple version */
+/* When updating this string:
+ - For each internal build, increment the build number.
+ - When merging from the FSF, delete any (experimental) or (prerelease).
+ Apple doesn't mark its GCC versions as 'prerelease', because a released
+ compiler will be identical to the last prerelease compiler and it
+ makes no sense to mark released compilers as 'prerelease'.
+ - There are other scripts that search for first word of the string
+ to get version number string. Do not use new line.
+*/
+
+const char version_string[] = "4.0.0 (Apple Computer, Inc. build 5016)";
+/* APPLE LOCAL end Apple version */
/* This is the location of the online document giving instructions for
reporting bugs. If you distribute a modified version of GCC,
@@ -14,4 +26,6 @@ const char version_string[] = "4.0.0 20050215 (experimental)";
forward us bugs reported to you, if you determine that they are
not bugs in your modifications.) */
-const char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>";
+/* APPLE LOCAL begin Apple bug-report */
+const char bug_report_url[] = "<URL:http://developer.apple.com/bugreporter>";
+/* APPLE LOCAL end Apple bug-report */