diff options
Diffstat (limited to 'utils/iserv/cbits/iservmain.c')
-rw-r--r-- | utils/iserv/cbits/iservmain.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/utils/iserv/cbits/iservmain.c b/utils/iserv/cbits/iservmain.c deleted file mode 100644 index daefd35251..0000000000 --- a/utils/iserv/cbits/iservmain.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "../rts/PosixSource.h" -#include "Rts.h" - -#include "HsFFI.h" - -int main (int argc, char *argv[]) -{ - RtsConfig conf = defaultRtsConfig; - - // We never know what symbols GHC will look up in the future, so - // we must retain CAFs for running interpreted code. - conf.keep_cafs = 1; - - conf.rts_opts_enabled = RtsOptsAll; - extern StgClosure ZCMain_main_closure; - hs_main(argc, argv, &ZCMain_main_closure, conf); -} |