# Copyright (C) 2023 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """List of supported architectures by Kleaf.""" ArchInfo = provider( "An architecture for a clang toolchain.", fields = { "name": "a substring of the name of the toolchain. Toolchains are registered in lexicographic order.", "target_os": "OS of the target platform", "target_cpu": "CPU of the target platform", "target_libc": """libc of the target platform None means unspecified. For Android, it is always bionic. For Linux, the default value is set in `//build/kernel/kleaf/platforms/libc`. """, }, ) SUPPORTED_ARCHITECTURES = [ ArchInfo( name = "1_linux_musl_x86_64", target_os = "linux", target_cpu = "x86_64", target_libc = "musl", ), ArchInfo( name = "2_linux_x86_64", target_os = "linux", target_cpu = "x86_64", target_libc = None, ), ArchInfo( name = "android_arm64", target_os = "android", target_cpu = "arm64", target_libc = None, ), ArchInfo( name = "android_arm", target_os = "android", target_cpu = "arm", target_libc = None, ), ArchInfo( name = "android_x86_64", target_os = "android", target_cpu = "x86_64", target_libc = None, ), ArchInfo( name = "android_i386", target_os = "android", target_cpu = "i386", target_libc = None, ), ArchInfo( name = "android_riscv64", target_os = "android", target_cpu = "riscv64", target_libc = None, ), ]