/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | qemu.bbclass | 18 target_arch = data.getVar("TARGET_ARCH") 19 if target_arch in ("i486", "i586", "i686"): 20 target_arch = "i386" 21 elif target_arch == "powerpc": 22 target_arch = "ppc" 23 elif target_arch == "powerpc64": 24 target_arch = "ppc64" 25 elif target_arch == "powerpc64le": 26 target_arch = "ppc64le" 28 return "qemu-" + target_arch
|
H A D | libc-package.bbclass | 30 target_arch = d.getVar("TARGET_ARCH") 37 if r.match(target_arch): 247 target_arch = d.getVar('TARGET_ARCH') 274 if target_arch in locale_arch_options: 275 localedef_opts = locale_arch_options[target_arch] 277 bb.error("locale_arch_options not found for target_arch=" + target_arch) 278 bb.fatal("unknown arch:" + target_arch + " for locale_arch_options")
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pyruvate/ |
H A D | 0001-linux.rs-Define-consts-for-rv32-architecture.patch | 17 target_arch = "s390x", 18 target_arch = "x86_64", 19 target_arch = "aarch64", 20 + target_arch = "riscv32", 21 target_arch = "riscv64"))]
|
H A D | 0001-check-for-mips-targets-for-stat.st_dev-definitions.patch | 38 + #[cfg(not(target_arch = "mips"))] 40 + #[cfg(target_arch = "mips")]
|
/openbmc/qemu/python/qemu/utils/ |
H A D | accel.py | 54 def kvm_available(target_arch: Optional[str] = None, 68 if target_arch: 70 if target_arch != host_arch: 71 if target_arch != ADDITIONAL_ARCHES.get(host_arch):
|
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/ |
H A D | case.py | 32 def check_elf(self, path, target_os=None, target_arch=None): argument 40 if not target_os or not target_arch: 42 target_os, target_arch = output.strip().split(":") 44 machine_data = oe.elf.machine_dict(None)[target_os][target_arch]
|
/openbmc/linux/scripts/gdb/linux/ |
H A D | utils.py | 166 target_arch = None variable 173 global target_arch 174 if target_arch is None: 175 target_arch = gdb.execute("show architecture", to_string=True) 176 return arch in target_arch
|
/openbmc/qemu/ |
H A D | configure | 1248 target_arch=${1%%-*} 1249 case $target_arch in 1278 case $target_arch in 1349 : ${container_image:=debian-$target_arch-cross} 1364 case "$target_arch:$cpu" in 1375 eval "target_cflags=\${cross_cc_cflags_$target_arch}" 1399 compute_target_variable $target_arch target_ar ar 1400 compute_target_variable $target_arch target_as as 1401 compute_target_variable $target_arch target_ld ld 1402 compute_target_variable $target_arch target_nm nm [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs/ |
H A D | 0001-ppc64-Do-not-use-mminimal-toc-with-clang.patch | 20 [ 'target_arch=="ppc64" and OS!="aix"', { 25 [ 'target_arch=="s390x"', {
|
H A D | 0004-v8-don-t-override-ARM-CFLAGS.patch | 71 - ['v8_target_arch==target_arch', { 95 - # 'v8_target_arch!=target_arch' 96 + ['v8_target_arch!=target_arch', {
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | types.py | 176 def qemu_use_kvm(kvm, target_arch): argument 184 if is_x86(build_arch) and is_x86(target_arch): 186 elif build_arch == target_arch:
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | gdbserver.py | 17 target_arch = self.td["TARGET_ARCH"] 27 gdb_recipe = "gdb-cross-" + target_arch
|
/openbmc/openbmc/poky/scripts/lib/wic/plugins/source/ |
H A D | isoimage-isohybrid.py | 317 target_arch = get_bitbake_var("TARGET_SYS") 318 if not target_arch: 321 if re.match("x86_64", target_arch): 324 elif re.match('i.86', target_arch): 329 target_arch)
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ |
H A D | __init__.py | 99 def generate_locale_archive(d, rootfs, target_arch, localedir): argument 128 if target_arch in locale_arch_options: 129 arch_options = locale_arch_options[target_arch] 131 bb.error("locale_arch_options not found for target_arch=" + target_arch) 132 bb.fatal("unknown arch:" + target_arch + " for locale_arch_options") 409 target_arch = self.d.getVar('TARGET_ARCH') 412 generate_locale_archive(self.d, self.target_rootfs, target_arch, localedir)
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | ide_sdk.py | 76 def __init__(self, name, target_arch=None): argument 78 self.target_arch = target_arch 109 def __init__(self, args, target_arch, target_device): argument 110 super().__init__('gdb-cross-' + target_arch, target_arch) 303 self.target_arch = None 370 self.target_arch = recipe_d.getVar('TARGET_ARCH') 946 if recipe_modified.target_arch not in gdbs_cross: 949 args, recipe_modified.target_arch, target_device) 952 gdbs_cross[recipe_modified.target_arch] = gdb_cross 953 recipe_modified.gdb_cross = gdbs_cross[recipe_modified.target_arch]
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/ |
H A D | gcc-common.inc | 55 target_arch = d.getVar('TRANSLATED_TARGET_ARCH') 66 if target_arch in multiarch_options : 67 return multiarch_options[target_arch]
|
/openbmc/qemu/target/sh4/ |
H A D | meson.build | 13 target_arch += {'sh4': sh4_ss}
|
/openbmc/qemu/target/tricore/ |
H A D | meson.build | 14 target_arch += {'tricore': tricore_ss}
|
/openbmc/qemu/target/cris/ |
H A D | meson.build | 16 target_arch += {'cris': cris_ss}
|
/openbmc/qemu/target/rx/ |
H A D | meson.build | 15 target_arch += {'rx': rx_ss}
|
/openbmc/qemu/target/microblaze/ |
H A D | meson.build | 19 target_arch += {'microblaze': microblaze_ss}
|
/openbmc/qemu/target/alpha/ |
H A D | meson.build | 20 target_arch += {'alpha': alpha_ss}
|
/openbmc/qemu/target/avr/ |
H A D | meson.build | 19 target_arch += {'avr': avr_ss}
|
/openbmc/qemu/target/hppa/ |
H A D | meson.build | 22 target_arch += {'hppa': hppa_ss}
|
/openbmc/qemu/target/mips/ |
H A D | meson.build | 21 target_arch += {'mips': mips_ss}
|