[tools] add GetGCCLikePLATFORM

GCC like means the toolchains which are compatible with GCC
This commit is contained in:
Meco Man
2023-08-20 13:26:39 -04:00
parent 290678b665
commit 30c793fdb9
7 changed files with 16 additions and 7 deletions

View File

@@ -66,6 +66,10 @@ def CheckHeader(rtconfig, filename):
return False
# GCC like means the toolchains which are compatible with GCC
def GetGCCLikePLATFORM():
return ['gcc', 'armclang', 'llvm-arm']
def GetNewLibVersion(rtconfig):
version = None
root = GetGCCRoot(rtconfig)