summaryrefslogtreecommitdiff
path: root/boehm-gc/add_gc_prefix.c
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-18 01:04:43 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-18 01:04:43 +0000
commit8fee6c5ba203062646a84ef04770c79ba2be0a6a (patch)
tree0a038d94cc4acd44c0926f011247f6b7969fa84b /boehm-gc/add_gc_prefix.c
parent75ae025532a15d2842c5401959ef6775e3ebe550 (diff)
downloadgcc-8fee6c5ba203062646a84ef04770c79ba2be0a6a.tar.gz
* Makefile.am, acinclude.m4, configure.in: Imported GC 6.0 and
merged local changes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/add_gc_prefix.c')
-rw-r--r--boehm-gc/add_gc_prefix.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/boehm-gc/add_gc_prefix.c b/boehm-gc/add_gc_prefix.c
index 0d1ab6d4d36..59515c7866e 100644
--- a/boehm-gc/add_gc_prefix.c
+++ b/boehm-gc/add_gc_prefix.c
@@ -1,4 +1,5 @@
# include <stdio.h>
+# include "version.h"
int main(argc, argv, envp)
int argc;
@@ -8,7 +9,12 @@ char ** envp;
int i;
for (i = 1; i < argc; i++) {
- printf("gc/%s ", argv[i]);
+ if (GC_ALPHA_VERSION == GC_NOT_ALPHA) {
+ printf("gc%d.%d/%s ", GC_VERSION_MAJOR, GC_VERSION_MINOR, argv[i]);
+ } else {
+ printf("gc%d.%dalpha%d/%s ", GC_VERSION_MAJOR,
+ GC_VERSION_MINOR, GC_ALPHA_VERSION, argv[i]);
+ }
}
return(0);
}