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
  
     | 
    
      blob
mark :1
data 1074
static const char cexe_t_c[] =
"@(#)$Id$";
/********************************************************************
 *
 *	Copyright (C) 1985-2013  John E. Wulff
 *
 *  You may distribute under the terms of either the GNU General Public
 *  License or the Artistic License, as specified in the README file.
 *
 *  For more information about this program, or for information on how
 *  to contact the author, see the README file
 *
 *	cexe_t.c
 *	template for cexe.c to bootstrap icr and ict
 *	if cexe.c does not exist
 *
 *******************************************************************/
#include	<stdio.h>
#include	<signal.h>
#include	"icc.h"
#include	"comp.h"
#if INT_MAX == 32767 && defined (LONG16)
long
#else
int
#endif
iC_exec(int iC_indx, iC_Gt * iC_gf)
{
    fflush(iC_outFP);
    fprintf(iC_errFP,
	"\n*** Error: cexe.c: does not support arithmetic expressions yet.\n"
	  "*** Rebuild compilers using '%s -c -%sO%o %s; m -rt'\n"
	  , iC_progname, iC_gflag ? "g" : "", iC_optimise, inpNM);
    iC_quit(SIGUSR1);
    return 0;	/* never gets here */
} /* iC_exec */
commit refs/heads/master
mark :2
committer jw <jw> 1378801907 +0000
data 63
use cexe_t.c as a template for cexe.c to bootstrap icr and ict
M 100644 :1 access
M 100644 inline .gitignore
data 199
# CVS default ignores begin
tags
TAGS
.make.state
.nse_depinfo
*~
\#*
.#*
,*
_$*
*$
*.old
*.bak
*.BAK
*.orig
*.rej
.del-*
*.a
*.olb
*.o
*.obj
*.so
*.exe
*.Z
*.elc
*.ln
core
# CVS default ignores end
reset refs/heads/master
from :2
done
 
     |