1*eca53ba6SRoland Levillain"""Defines global variables that lists target cpus""" 2*eca53ba6SRoland Levillain 3*eca53ba6SRoland LevillainPLATFORM_CPU_X86_64 = ("@platforms//cpu:x86_64") 4*eca53ba6SRoland Levillain 5*eca53ba6SRoland LevillainPLATFORM_CPU_ARM = ("@platforms//cpu:arm") 6*eca53ba6SRoland Levillain 7*eca53ba6SRoland LevillainPLATFORM_CPU_ARM64 = ("@platforms//cpu:arm64") 8*eca53ba6SRoland Levillain 9*eca53ba6SRoland LevillainPLATFORM_CPU_MIPS = ("@platforms//cpu:mips64") 10*eca53ba6SRoland Levillain 11*eca53ba6SRoland LevillainPLATFORM_CPU_PPC = ("@platforms//cpu:ppc") 12*eca53ba6SRoland Levillain 13*eca53ba6SRoland LevillainPLATFORM_CPU_RISCV32 = ("@platforms//cpu:riscv32") 14*eca53ba6SRoland Levillain 15*eca53ba6SRoland LevillainPLATFORM_CPU_RISCV64 = ("@platforms//cpu:riscv64") 16*eca53ba6SRoland Levillain 17*eca53ba6SRoland Levillain 18*eca53ba6SRoland LevillainPLATFORM_OS_MACOS = ("@platforms//os:macos") 19