Skip to content
Snippets Groups Projects
Commit aa12ef6a authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Report features auto_bignum and machine_code.

Rev: lib/modules/Tools.pmod/Install.pmod:1.31
parent 8f797ab2
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,14 @@ array(string) features()
{
array a = ({}), m = ({});
mapping runtime_info = Pike.get_runtime_info();
if (runtime_info->auto_bignum)
a += ({"auto_bignum"});
if (!(<"default", "computed_goto">)[runtime_info->bytecode_method])
a += ({"machine_code"});
#if constant(load_module)
a += ({ "dynamic_modules" });
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment