X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=dffa2ab843094373b291494513d751418adc4363;hb=153603392f807a3412fe7d98d16c035c4abb377c;hp=465808aaf657fb26f28240a7e85f44083f6c93e2;hpb=46cd7a45ea505ac9bb18d410e349b9553c95457a;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 465808aa..dffa2ab8 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -52,7 +52,13 @@ from _wizard_version import WIZARD_VERSION from LoadException import VersionException, ToolchainException def _cmp(x, y): - return cmp(x["info"].get('ord', 0), y["info"].get('ord', 0)) + result = cmp(x["info"].get('ord', 0), y["info"].get('ord', 0)) + if result == 0: + result = cmp( + x["info"].get("name", x["info"]["filename"]).lower(), + y["info"].get("name", y["info"]["filename"]).lower() + ) + return result def isBertosDir(directory): return os.path.exists(directory + "/VERSION") @@ -166,7 +172,7 @@ def userMkGenerator(project_info): mk_data = {} mk_data["$pname"] = os.path.basename(project_info.info("PROJECT_PATH")) mk_data["$ppath"] = relpath.relpath(project_info.info("PROJECT_SRC_PATH"), project_info.info("PROJECT_PATH")) - mk_data["$main"] = os.path.join("$(%s_SRC_PATH)" %project_info.info("PROJECT_NAME"), "main.c") + mk_data["$main"] = "/".join(["$(%s_SRC_PATH)" %project_info.info("PROJECT_NAME"), "main.c"]) for key in mk_data: makefile = makefile.replace(key, mk_data[key]) open(destination, "w").write(makefile) @@ -232,7 +238,7 @@ def csrcGenerator(project_info): dependency_files = set([]) # assembly sources asm_files = set([]) - hwdir = os.path.basename(project_info.info("PROJECT_PATH")) + "/hw" + hwdir = os.path.basename(project_info.info("PROJECT_PATH")) + "/hw" if information["enabled"]: if "constants" in information: constants.update(information["constants"]) @@ -382,7 +388,7 @@ def getTagSet(cpu_info): tag_set |= set(cpu["CPU_TAGS"]) tag_set |= set([cpu["TOOLCHAIN"]]) return tag_set - + def getInfos(definition): D = {}