Open jwaldmann opened 11 years ago
at the moment, CO4 is configurable like this
$( runIO $ configurable [ Verbose , ImportPrelude -- , DumpAll "/tmp/sl" -- , Profile , Cache ] $ compileFile "CO4/Test/SL.standalone.hs" )
This means I have to know all the options at compile-time.
There should be a way to set some of these options at run-time (Verbose,Profile, maybe Cache)
Verbose
Profile
Cache
Profile and Cache affect the code generation of the abstract program, so these flags must be known during compilation time.
at the moment, CO4 is configurable like this
This means I have to know all the options at compile-time.
There should be a way to set some of these options at run-time (
Verbose
,Profile
, maybeCache
)