CurryInfo: frontend-exec-3.3.0 / System.FrontendExec.callFrontendWithParams

definition:
callFrontendWithParams :: FrontendTarget -> FrontendParams -> String -> IO ()
callFrontendWithParams target params modpath = do
  syscall <- getFrontendCall target params modpath
  let lf = maybe "" id (logfile params)
  retcode <- if null lf
               then system syscall
               else system (syscall ++ " > " ++ lf ++ " 2>&1")
  if retcode == 0
    then return ()
    else ioError (userError "Illegal source program")
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- In order to make sure that compiler generated files (like .fcy, .fint, .acy)
--- are up to date, one can call the front end of the Curry compiler
--- with this action where various parameters can be set.
--- If the front end returns with an error, an exception is raised.
--- @param target - the kind of target file to be generated
--- @param params - parameters for the front end
--- @param modpath - the name of the main module possibly prefixed with a
---                  directory where this module resides
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_) |-> _}
name:
callFrontendWithParams
precedence:
no precedence defined
result-values:
_
signature:
FrontendTarget -> FrontendParams -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term