1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/****************************************************************************/
/* */
/* GNAT COMPILER TOOLS */
/* */
/* G N A T C H O P */
/* */
/* C Implementation File */
/* */
/* $Revision: 1.2 $ */
/* */
/* Copyright (C) 1996 Free Software Foundation, Inc. */
/* */
/* GNAT is free software; you can redistribute it and/or modify it under */
/* terms of the GNU General Public License as published by the Free Soft- */
/* ware Foundation; either version 2, or (at your option) any later ver- */
/* sion. GNAT is distributed in the hope that it will be useful, but WITH- */
/* OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY */
/* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License */
/* for more details. You should have received a copy of the GNU General */
/* Public License distributed with GNAT; see file COPYING. If not, write */
/* to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, */
/* MA 02111-1307, USA. */
/* */
/* GNAT was originally developed by the GNAT team at New York University. */
/* It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). */
/* */
/****************************************************************************/
/*
* This program is for Open/VMS Alpha. The GNAT spawn routine on VMS uses the
* fork/exec calls, but they can't handle command files, so we have this
* wrapper program that gets execed instead and then uses the VMS lib$spawn
* routine to spawn gnatchop.com. This program is GNAT spawned from gnatcmd,
* and is not needed when invoking gnatchop.com directly. Since a .com
* extension appears (alphabetically) before a .exe extension, there is no
* confusion by DCL.
*/
#include "config.h"
extern char* locate_regular_file();
typedef struct dsc {unsigned short len, mbz; char *adr; } Descr;
main (argc, argv)
int argc;
char *argv[];
{
int i;
int len = 0;
char *buff;
Descr cmd;
char *chopspec;
char *path_val = TO_NORMAL_FILE_SPEC (getenv ("VAXC$PATH"));
char *apath_val = alloca (strlen (path_val) + 1);
strcpy (apath_val, path_val);
chopspec = TO_HOST_FILE_SPEC (locate_regular_file
("gnatchop.com", apath_val));
/*
* Figure out how many bytes of commands and args.
*/
len = strlen (chopspec) + 1;
for (i=1; i<argc; i++)
len = len + strlen (argv [i]) + 1;
buff = (char *) malloc (len);
/*
* Command procedures must start with @.
*/
buff [0] = '@';
/*
* We know that exec() puts the directory we are in and all that good
* stuff in argv[0].
*/
strcpy (&buff [1], chopspec);
/*
* Find the switches and put them first since that is what gnatchop.com
* expects, and not what gnatcmd does.
*/
for (i=1; i<argc; i++)
if (argv[i][0] == '-')
{
strcat (buff, " ");
strcat (buff, argv[i]);
}
/*
* Put file and directory names last.
*/
for (i=1; i<argc; i++)
if (argv[i][0] != '-')
{
strcat (buff, " ");
strcat (buff, argv[i]);
}
/*
* Build a proper descriptor for lib$spawn.
*/
len = strlen (buff);
buff [len] = '\0';
cmd.adr = buff;
cmd.len = len;
cmd.mbz = 0;
i = lib$spawn (&cmd);
/*
* Die with a traceback if something went wrong.
*/
if ((i & 1) != 1)
lib$stop ();
exit (0);
}
|