I had reason to compile FD on a 64-bit machine that was not set up to
cross-compile for 32-bit. Just removing the -m32 flags from the Makefiles were
enough to make it compile, but the resulting binary exhibited a strange bug: The
any_cast in Options::get failed for enums (in particular, for the cost_type
option, both when the option was given explicitly and when it was not, i.e.,
when using the default value).
To fix it, I replaced the two calls to opts.set(k, ...) in
OptionParser::add_enum_option by opts.set<int>(k, ...). After this, the planner
works as normal.
No idea why this behaviour showed up only in the 64-bit version. (It may have
nothing to do with that, I guess, could be a different version of boost
libraries or something.)
|