# Copyright (c) 2013 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. default_clang_base_path = "//buildtools/windows-x64/clang" declare_args() { # Path to the directory containing the VC binaries for the right # combination of host and target architectures. Currently only the # 64-bit host toolchain is supported, with either 32-bit or 64-bit targets. # If vc_bin_dir is not specified on the command line (and it normally # isn't), we will dynamically determine the right value to use at runtime. vc_bin_dir = "" # Path to the clang toolchain. clang_base_path = default_clang_base_path } import("//build/config/win/visual_studio_version.gni") import("//build/toolchain/goma.gni") # Should only be running on Windows. assert(is_win) # Setup the Visual Studio state. # # Its arguments are the VS path and the compiler wrapper tool. It will write # "environment.x86" and "environment.x64" to the build directory and return a # list to us. # This tool will is used as a wrapper for various commands below. tool_wrapper_path = rebase_path("tool_wrapper.py", root_build_dir) toolchain_data = exec_script("setup_toolchain.py", [ visual_studio_path, windows_sdk_path, visual_studio_runtime_dirs, current_cpu, ], "scope") if (vc_bin_dir == "") { vc_bin_dir = toolchain_data.vc_bin_dir } if (use_goma) { goma_prefix = "$goma_dir/gomacc.exe " } else { goma_prefix = "" } if (current_toolchain == default_toolchain) { if (is_debug) { configuration = "Debug" } else { configuration = "Release" } exec_script("//build/vs_toolchain.py", [ "copy_dlls", rebase_path(root_build_dir), configuration, current_cpu, ]) } # Parameters: # toolchain_args: Settings for the toolchain, including at least: # current_cpu: current_cpu to pass as a build arg # environment: File name of environment file. template("msvc_toolchain") { toolchain(target_name) { # When invoking this toolchain not as the default one, these args will be # passed to the build. They are ignored when this is the default toolchain. assert(defined(invoker.toolchain_args)) toolchain_args = { if (defined(invoker.toolchain_args)) { forward_variables_from(invoker.toolchain_args, "*") } } env = invoker.environment cl = invoker.cl # Make these apply to all tools below. lib_switch = "" lib_dir_switch = "/LIBPATH:" tool("cc") { rspfile = "{{output}}.rsp" # TODO(brettw) enable this when GN support in the binary has been rolled. #precompiled_header_type = "msvc" pdbname = "{{target_out_dir}}/{{target_output_name}}_c.pdb" command = "ninja -t msvc -e $env -- $cl /nologo /showIncludes @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname" depsformat = "msvc" description = "CC {{output}}" outputs = [ "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.obj", ] rspfile_content = "{{defines}} {{include_dirs}} {{cflags}} {{cflags_c}}" } tool("cxx") { rspfile = "{{output}}.rsp" # TODO(brettw) enable this when GN support in the binary has been rolled. #precompiled_header_type = "msvc" # The PDB name needs to be different between C and C++ compiled files. pdbname = "{{target_out_dir}}/{{target_output_name}}_cc.pdb" flags = "" if (is_clang && invoker.current_cpu == "x86") { flags = "-m32" } command = "ninja -t msvc -e $env -- $cl $flags /nologo /showIncludes @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname" depsformat = "msvc" description = "CXX {{output}}" outputs = [ "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.obj", ] rspfile_content = "{{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}}" } tool("rc") { command = "$python_path $tool_wrapper_path rc-wrapper $env rc.exe /nologo {{defines}} {{include_dirs}} /fo{{output}} {{source}}" depsformat = "msvc" outputs = [ "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.res", ] description = "RC {{output}}" } tool("asm") { is_msvc_assembler = true if (toolchain_args.current_cpu == "x64") { ml = "ml64.exe" x64 = "-D_ML64_X64" } else if (toolchain_args.current_cpu == "arm64") { is_msvc_assembler = false prefix = rebase_path("$clang_base_path/bin", root_build_dir) ml = "${goma_prefix}${prefix}/clang-cl.exe --target=arm64-windows" x64 = "" } else { ml = "ml.exe" x64 = "" } command = "$python_path $tool_wrapper_path asm-wrapper $env $ml $x64 {{defines}} {{include_dirs}} {{asmflags}} " if (is_msvc_assembler) { command += "-c -o{{output}} {{source}}" } else { command += "/c /Fo{{output}} {{source}}" } outputs = [ "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.obj", ] } tool("alink") { rspfile = "{{output}}.rsp" command = "$python_path $tool_wrapper_path link-wrapper $env False lib.exe /nologo /ignore:4221 /OUT:{{output}} @$rspfile" description = "LIB {{output}}" outputs = [ # Ignore {{output_extension}} and always use .lib, there's no reason to # allow targets to override this extension on Windows. "{{target_out_dir}}/{{target_output_name}}.lib", ] default_output_extension = ".lib" # The use of inputs_newline is to work around a fixed per-line buffer # size in the linker. rspfile_content = "{{inputs_newline}}" } tool("solink") { dllname = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}" # e.g. # foo.dll libname = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.lib" # e.g. # foo.dll.lib expname = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.exp" # e.g. # foo.dll.exp pdbname = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.pdb" # e.g. # foo.dll.pdb rspfile = "${dllname}.rsp" link_command = "$python_path $tool_wrapper_path link-wrapper $env False link.exe /nologo /IMPLIB:$libname /DLL /OUT:$dllname /PDB:${dllname}.pdb @$rspfile" # TODO(brettw) support manifests #manifest_command = "$python_path $tool_wrapper_path manifest-wrapper $env mt.exe -nologo -manifest $manifests -out:${dllname}.manifest" #command = "cmd /c $link_command && $manifest_command" command = link_command default_output_extension = ".dll" description = "LINK(DLL) {{output}}" outputs = [ dllname, expname, libname, pdbname, ] link_output = libname depend_output = libname # The use of inputs_newline is to work around a fixed per-line buffer # size in the linker. rspfile_content = "{{libs}} {{solibs}} {{inputs_newline}} {{ldflags}}" restat = true } tool("link") { binary_output = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}" rspfile = "$binary_output.rsp" pdbfile = "$binary_output.pdb" link_command = "$python_path $tool_wrapper_path link-wrapper $env False link.exe /nologo /OUT:$binary_output /PDB:$pdbfile @$rspfile" # TODO(brettw) support manifests #manifest_command = "$python_path $tool_wrapper_path manifest-wrapper $env mt.exe -nologo -manifest $manifests -out:{{output}}.manifest" #command = "cmd /c $link_command && $manifest_command" command = link_command default_output_extension = ".exe" description = "LINK $binary_output" outputs = [ binary_output, pdbfile, ] # The use of inputs_newline is to work around a fixed per-line buffer # size in the linker. rspfile_content = "{{inputs_newline}} {{libs}} {{solibs}} {{ldflags}}" restat = true } tool("stamp") { command = "cmd /c type nul > \"{{output}}\"" description = "STAMP {{output}}" } tool("copy") { command = "$python_path $tool_wrapper_path recursive-mirror {{source}} {{output}}" description = "COPY {{source}} {{output}}" } } } template("win_toolchains") { assert(defined(invoker.toolchain_arch)) toolchain_arch = invoker.toolchain_arch msvc_toolchain(target_name) { environment = "environment." + toolchain_arch cl = "${goma_prefix}\"${vc_bin_dir}/cl.exe\"" toolchain_args = { if (defined(invoker.toolchain_args)) { forward_variables_from(invoker.toolchain_args, "*") } current_cpu = toolchain_arch is_clang = false } } msvc_toolchain("clang_" + target_name) { environment = "environment." + toolchain_arch prefix = rebase_path("$clang_base_path/bin", root_build_dir) cl = "${goma_prefix}$prefix/clang-cl.exe" toolchain_args = { if (defined(invoker.toolchain_args)) { forward_variables_from(invoker.toolchain_args, "*") } current_cpu = toolchain_arch is_clang = true } } } if (target_cpu == "x86") { win_toolchains("x86") { toolchain_arch = "x86" } } if (target_cpu == "x64") { win_toolchains("x64") { toolchain_arch = "x64" } } if (target_cpu == "arm") { # When the target cpu is "arm", we use the 32-bit intel toolchain "x86". win_toolchains("x86") { toolchain_arch = "x86" } } if (target_cpu == "arm64") { win_toolchains("arm64") { toolchain_arch = "arm64" } # Cross-compilation support for x64 hosts. if (host_cpu != "arm64") { win_toolchains(host_cpu) { toolchain_arch = host_cpu } } }