The R Project SVN R

Rev

Rev 89696 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89696 Rev 90211
Line 1199... Line 1199...
1199
    if(R_Verbose)
1199
    if(R_Verbose)
1200
	REprintf(" ending setup_Rmainloop(): R_Interactive = %d {main.c}\n",
1200
	REprintf(" ending setup_Rmainloop(): R_Interactive = %d {main.c}\n",
1201
		 R_Interactive);
1201
		 R_Interactive);
1202
 
1202
 
1203
    /* trying to do this earlier seems to run into bootstrapping issues. */
1203
    /* trying to do this earlier seems to run into bootstrapping issues. */
-
 
1204
#ifndef RMIN_ONLY
1204
    doneit = 0;
1205
    doneit = 0;
1205
    if (SETJMP(R_Toplevel.cjmpbuf))
1206
    if (SETJMP(R_Toplevel.cjmpbuf))
1206
	check_session_exit();
1207
	check_session_exit();
1207
    R_GlobalContext = R_ToplevelContext = R_SessionContext = &R_Toplevel;
1208
    R_GlobalContext = R_ToplevelContext = R_SessionContext = &R_Toplevel;
1208
    if (!doneit) {
1209
    if (!doneit) {
1209
	doneit = 1;
1210
	doneit = 1;
1210
	R_init_jit_enabled();
1211
	R_init_jit_enabled();
1211
    } else
1212
    } else
1212
	R_Suicide(_("unable to initialize the JIT\n"));
1213
	R_Suicide(_("unable to initialize the JIT\n"));
-
 
1214
#endif
1213
    R_Is_Running = 2;
1215
    R_Is_Running = 2;
1214
}
1216
}
1215
 
1217
 
1216
extern SA_TYPE SaveAction; /* from src/main/startup.c */
1218
extern SA_TYPE SaveAction; /* from src/main/startup.c */
1217
 
1219