Lines Matching full:cross
25 # cross compiler auto detection
30 # first find cross binutils in path
31 find-cross-ld = $(firstword $(wildcard $(patsubst %,%/$(1)-*$(system)*-ld,$(path))))
32 # then check we have cross gcc too
33 find-cross-gcc = $(firstword $(wildcard $(patsubst %ld,%gcc,$(call find-cross-ld,$(1)))))
35 find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1))))
37 arm_cross_prefix := $(call find-cross-prefix,arm)
38 powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64)
39 powerpc_cross_prefix := $(call find-cross-prefix,powerpc)
40 x86_64_cross_prefix := $(call find-cross-prefix,x86_64)
41 riscv32_cross_prefix := $(call find-cross-prefix,riscv32)
42 riscv64_cross_prefix := $(call find-cross-prefix,riscv64)
133 $(MAKE) -C SLOF CROSS=$(powerpc64_cross_prefix) qemu
149 $(MAKE) -C skiboot CROSS=$(powerpc64_cross_prefix)