.x is a binary extension used for xcoff object files (MrC, etc)

This commit is contained in:
Kelvin Sherlock 2022-10-10 21:07:13 -04:00
parent 48d869c6e8
commit 3e2c02f796

View File

@ -288,6 +288,11 @@ namespace OS
if (ext == "sym") if (ext == "sym")
return true; return true;
break; break;
case 'x':
// xcoff object file
if (ext == "x")
return true;
break;
} }
return false; return false;