Jack
Jack

Reputation: 133577

Conditional compiling in OCaml

suppose I have a long algorithm which I would like to be optionally verbose to debug it. So far I just added many if verbose then printf "whatever" all around the code but this forces the code to execute many useless tests if I don't want to have it in the verbose mode.

Is there a way to obtain a simple conditional compilation which can just ignore the printf lines if a flag is set?

Something that, for example, I can do in C by using #IFDEF DEBUG printf .. #ENDIF

Upvotes: 5

Views: 1137

Answers (1)

Niki Yoshiuchi
Niki Yoshiuchi

Reputation: 17551

What you are looking for can be found in camlp4. If you include the predefined macros then you can define flags on the command line using -D (and -U to undef them):

camlp4o pa_macro.cmo -DFOO file.ml

In code it looks like this:

let f x = IFDEF FOO THEN x + 1 ELSE x - 1 END;;

Upvotes: 7

Related Questions