1999-11-02 00:15:51 +01:00
|
|
|
/* Conditionally execute a command based on machine and OS from gcconfig.h */
|
|
|
|
|
Imported version version 6.0alpha7.
* README, README.Mac, README.OS2, README.QUICK, README.alpha,
README.amiga, README.debugging, README.dj, README.hp, README.linux,
README.rs6000, README.sgi, README.solaris2, README.uts,
README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
hpux_irix_threads.c, makefile.depend, nursery.c,
solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
files.
From-SVN: r42379
2001-05-21 10:35:14 +02:00
|
|
|
# include "private/gcconfig.h"
|
1999-04-07 10:01:30 +02:00
|
|
|
# include <stdio.h>
|
Imported version version 6.0alpha7.
* README, README.Mac, README.OS2, README.QUICK, README.alpha,
README.amiga, README.debugging, README.dj, README.hp, README.linux,
README.rs6000, README.sgi, README.solaris2, README.uts,
README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
hpux_irix_threads.c, makefile.depend, nursery.c,
solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
files.
From-SVN: r42379
2001-05-21 10:35:14 +02:00
|
|
|
# include <string.h>
|
|
|
|
# include <unistd.h>
|
1999-04-07 10:01:30 +02:00
|
|
|
|
|
|
|
int main(argc, argv, envp)
|
|
|
|
int argc;
|
|
|
|
char ** argv;
|
|
|
|
char ** envp;
|
|
|
|
{
|
|
|
|
if (argc < 4) goto Usage;
|
|
|
|
if (strcmp(MACH_TYPE, argv[1]) != 0) return(0);
|
|
|
|
if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0
|
|
|
|
&& strcmp(OS_TYPE, argv[2]) != 0) return(0);
|
2003-07-28 06:18:23 +02:00
|
|
|
fprintf(stderr, "^^^^Starting command^^^^\n");
|
Imported version version 6.0alpha7.
* README, README.Mac, README.OS2, README.QUICK, README.alpha,
README.amiga, README.debugging, README.dj, README.hp, README.linux,
README.rs6000, README.sgi, README.solaris2, README.uts,
README.win32, SCoptions.amiga, backptr.h, barrett_diagram,
dbg_mlc.h, gc.h, gc.man, gc_alloc.h, gc_cpp.h, gc_hdrs.h, gc_mark.h,
gc_priv.h, gc_private.h, gc_typed.h, gcconfig.h,
hpux_irix_threads.c, makefile.depend, nursery.c,
solaris_threads.h, test.c, test_cpp.cc, weakpointer.h, cord/README,
cord/SCOPTIONS.amiga, cord/SMakefile.amiga, cord/cord.h,
cord/ec.h, cord/gc.h, cord/private/cord_pos.h, include/backptr.h,
include/gc_copy_descr.h, include/gc_nursery.h: Remove obsolete/moved
files.
From-SVN: r42379
2001-05-21 10:35:14 +02:00
|
|
|
fflush(stdout);
|
1999-04-07 10:01:30 +02:00
|
|
|
execvp(argv[3], argv+3);
|
|
|
|
perror("Couldn't execute");
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
fprintf(stderr, "Usage: %s mach_type os_type command\n", argv[0]);
|
|
|
|
fprintf(stderr, "Currently mach_type = %s, os_type = %s\n",
|
|
|
|
MACH_TYPE, OS_TYPE);
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|