blob: 21a6a3c48bcba6e7c2db355bbc72c5bb46f89f09 [file] [log] [blame]
# Copyright 2023 The Cobalt Authors. All Rights Reserved.
#
# 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.
import("//build/config/clang/clang.gni")
import("//build/config/win/visual_studio_version.gni")
import("//build/toolchain/gcc_toolchain.gni")
import("//starboard/build/config/os_definitions.gni")
# Use this toolchain for linux-x64 platforms.
if (is_linux && !using_old_compiler && target_cpu == "x64") {
clang_toolchain("clang") {
clang_base_path = clang_base_path
}
} else {
import("//$starboard_path/toolchain/variables.gni")
assert(
defined(native_linker_path),
"native_linker_path should be defined in $starboard_path/toolchain/variables.gni")
}
# Use this toolchain for raspi platforms, old linux compiler platforms.
if ((is_linux && target_cpu == "arm") || (using_old_compiler && !is_host_win)) {
gcc_toolchain("clang") {
prefix = rebase_path("$clang_base_path/bin", root_build_dir)
cc = "$prefix/clang"
cxx = "$prefix/clang++"
ld = native_linker_path
readelf = "readelf"
ar = "${prefix}/llvm-ar"
nm = "nm"
toolchain_args = {
is_clang = true
}
}
}
# Use this toolchain for Windows based platforms.
if (is_host_win) {
gcc_toolchain("clang") {
prefix = llvm_clang_path
cc = "$prefix/clang.exe"
cxx = "$prefix/clang++.exe"
ld = native_linker_path
readelf = "$prefix/llvm-readobj.exe"
ar = "${prefix}/llvm-ar.exe"
nm = "${prefix}/llvm-nm.exe"
toolchain_args = {
is_clang = true
}
executable_extension = native_executable_extension
shlib_extension = native_shlib_extension
if (defined(native_snarl_linker)) {
using_snarl_linker = true
}
toolchain_args = {
is_clang = true
}
}
}