| # Copyright 2016 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/toolchain/clang_toolchain_suite.gni") |
| |
| clang_host_toolchain_suite("host_x64") { |
| toolchain_cpu = "x64" |
| } |
| clang_host_toolchain_suite("host_arm64") { |
| toolchain_cpu = "arm64" |
| } |
| |
| clang_toolchain_suite("linux_x64") { |
| toolchain_cpu = "x64" |
| toolchain_os = "linux" |
| use_strip = true |
| } |
| |
| clang_toolchain_suite("linux_arm64") { |
| toolchain_cpu = "arm64" |
| toolchain_os = "linux" |
| use_strip = true |
| } |
| |
| clang_toolchain_suite("unknown_wasm32") { |
| toolchain_cpu = "wasm32" |
| toolchain_os = "unknown" |
| use_strip = false |
| } |