definition:
|
saveCurryProgram :: String -> [String] -> String -> IO Int
saveCurryProgram progname curryargs binname = do
ec <- system $ installDir </> "bin" </> "curry " ++ replOpts ++ " " ++
unwords curryargs ++ " :load " ++ progname ++
" :save :quit"
unless (ec/=0) $ renameFile (stripCurrySuffix progname) binname
system $ installDir </> "bin" </> "cleancurry" ++ " " ++ progname
removeFile progname
return ec
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Saves a Curry program with given Curry system arguments into a binary
-- (last argument) and delete the program after the compilation:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
saveCurryProgram
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [String] -> String -> Prelude.IO Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|