First, you don't really want to know which cma to load, rather you want to know which package to load via ocamlfind. Next thing to notice is that ocaml compilers need to perform the same thing to compile the project - i.e. by the name of the module referenced in source code find the compiled interface for that module. So let's emulate that behaviour. Compilers get the include paths from command-line, but we have to search all possible include paths. So here we go :
for i in $(ocamlfind list | cut -d ' ' -f 1) ; do
if [ -r $(ocamlfind query $i)/XXX.cmi ] ; then
echo $i; break;
fi ;
done
or
ocamlfind printconf path | xargs -n1 -I/ find / -name XXX.cmi
NB the mapping from module name to filename is not unique - e.g. SomeModule can be represented either by someModule.cmi or SomeModule.cmi (less common).