nitc :: NaiveInterpreter :: _compile_dir
# Where to store generated C and extracted code
private var compile_dir: String is lazy do
# Prioritize the user supplied directory
var opt = modelbuilder.toolcontext.opt_compile_dir.value
if opt != null then return opt
return "/tmp/niti_ffi_{process_id}"
end
src/interpreter/dynamic_loading_ffi/on_demand_compiler.nit:75,2--81,4