POWER8 builds fail to create res/*nreg
Brought to you by:
rwhaley,
tonyc040457
Building a git checkout from today fails on POWER8 because ./xgmmsearch -p s -f 4 isn't creating res/snreg. The problem is in FindInfo():
mp = ReadMMFileWithPath(pre, "res", "gmvAMMUR.sum");
mpN = ReadMMFileWithPath(pre, "res", "gkvAMMUR.sum");
if (mp && mpN)
{
...
return;
}
Both files exist, so we return from FindInfo() before the code that creates res/snreg is executed.
I may have fixed this. If you get a chance to check, let me know if it works now.
Thanks, fix looks good.
Great, thanks for reporting & checking!