Improved the file type filter

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3313 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jwang36 2007-07-18 06:50:31 +00:00
parent 523bc716fb
commit b1f7ad6671
2 changed files with 12 additions and 13 deletions

Binary file not shown.

View File

@ -46,21 +46,20 @@ FileTypeMapping = {
".so" : "Dynamic-Library",
}
DefaultToolCode = ["CC", "ASM", "SLINK", "DLINK", "PCH", "PP", "ASL", "VFRC", "AUTOGEN"]
DefaultToolCode = ["CC", "ASM", "SLINK", "DLINK", "PCH", "PP", "ASL"]
ToolCodeMapping = {
"C-Code" : "CC",
"C-Header" : "PCH",
"Masm-Code" : "ASM",
"Iasm-Code" : "ASM", # IPF assembly code
"Gasm-Code" : "ASM", # GNU assembly code
"Unicode-Text" : "AUTOGEN",
"Visual-Form-Representation" : "VFRC",
"Preprocessed-Code" : "CC",
"Acpi-Source-Language" : "ASL",
"Object" : "SLINK",
"Static-Library" : "DLINK",
"Dependency-Expression" : "PP",
"C-Code" : ["CC"],
"C-Header" : ["PCH"],
"Masm-Code" : ["PP", "ASM"],
"Iasm-Code" : ["PP", "ASM"], # IPF assembly code
"Gasm-Code" : ["ASM"], # GNU assembly code
"Visual-Form-Representation" : ["PP", "CC"],
"Preprocessed-Code" : ["CC"],
"Acpi-Source-Language" : ["ASL"],
"Object" : ["SLINK"],
"Static-Library" : ["DLINK"],
"Dependency-Expression" : ["PP"],
}
ToolChainFamilyMapping = {