mirror of
https://github.com/ksherlock/mpw.git
synced 2025-03-06 09:29:23 +00:00
.x is a binary extension used for xcoff object files (MrC, etc)
This commit is contained in:
parent
48d869c6e8
commit
3e2c02f796
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user