Lines Matching +full:yoe +full:- +full:distro

10 PN = "llvm-project-source-${PV}"
11 WORKDIR = "${TMPDIR}/work-shared/llvm-project-source-${PV}-${PR}"
12 SSTATE_SWSPEC = "sstate:llvm-project-source::${PV}:${PR}::${SSTATE_VERSION}:"
14 STAMP = "${STAMPS_DIR}/work-shared/llvm-project-source-${PV}-${PR}"
15 STAMPCLEAN = "${STAMPS_DIR}/work-shared/llvm-project-source-${PV}-*"
28 # space separated list of additional distro vendor values we want to support e.g.
29 # "yoe webos" or "-yoe -webos" '-' is optional
31 # Extra OE DISTRO that want to support as build host. space separated list of additional distro.
32 # ":" separated the ID in "/etc/os-release" and the triple for finding gcc on this OE DISTRO.
45 # convert -yoe into yoe
46 vendor = vendor.lstrip('-')
47 # generate possible multilib vendor names for yoe
56 triple += ' "x86_64-' + vendor_to_add + '-linux",'
61 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_VENDORS_TRIPLES#%s#g' ${S}/clang/lib/Driver/ToolChains/…
63 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_VENDORS_CASES#%s#g' -i ${S}/llvm/lib/Support/Triple.cpp…
73 for distro in distros.split():
74 distro_id = distro.split(":")[0].replace('-','_')
75 distro_triple = distro.split(":")[1]
76 case += '\\n .Case("' + distro_id + '", Distro::' + distro_id.upper() + ')'
77 …triple += '\\n if (Distro.Is' + distro_id.upper() + '())\\n return "x86_64-' + distro_triple…
82 check += '\\nbool IsOpenEmbedded() const { return DistroVal == ' + oe_names[0:-3] + '; }'
84 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_DISTRO_NAME#%s#g' ${S}/clang/include/clang/Driver/Distr…
86 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_DISTRO_CHECK#%s#g' ${S}/clang/include/clang/Driver/Dist…
88 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_DISTRO_TRIPLES#%s#g' ${S}/clang/lib/Driver/ToolChains/L…
90 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_DISTRO_CASES#%s#g' -i ${S}/clang/lib/Driver/Distro.cpp"…