• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Defines global variables that lists target cpus"""
2
3PLATFORM_CPU_X86_64 = ("@platforms//cpu:x86_64")
4
5PLATFORM_CPU_ARM = ("@platforms//cpu:arm")
6
7PLATFORM_CPU_ARM64 = ("@platforms//cpu:arm64")
8
9PLATFORM_CPU_MIPS = ("@platforms//cpu:mips64")
10
11PLATFORM_CPU_PPC = ("@platforms//cpu:ppc")
12
13PLATFORM_CPU_RISCV32 = ("@platforms//cpu:riscv32")
14
15PLATFORM_CPU_RISCV64 = ("@platforms//cpu:riscv64")
16
17
18PLATFORM_OS_MACOS = ("@platforms//os:macos")
19