X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=b57801a0fe6ef6db2658d510cc071d941ad35adb;hb=9b2a54e784f116cc9b4f770e1acbc15c4c5f013a;hp=8a73185d71822b74f2881b1d0af0716697d2b821;hpb=1b59c54367c74f50569f7e7d771ad8ccec15d20f;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 8a73185d..b57801a0 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -358,6 +358,10 @@ def getToolchainInfo(output): info["thread"] = thread[0].split("Thread model: ")[1] return info +def getToolchainName(toolchain_info): + name = "GCC " + toolchain_info["version"] + " - " + toolchain_info["target"].strip() + return name + def loadSourceTree(project): fileList = [f for f in os.walk(project.info("SOURCES_PATH"))] project.setInfo("FILE_LIST", fileList)