Configuring CROSSTOOL
Overview
This tutorial uses an example scenario to describe how to configure CROSSTOOL
for a project. It’s based on an
example C++ project
that builds error-free using gcc
, clang
, and msvc
.
In this tutorial, you configure a CROSSTOOL file so that Bazel can build the
application with emscripten
. The expected outcome is to run
bazel build --config=asmjs test/helloworld.js
on a Linux machine and build the
C++ application using emscripten
targeting asm.js
.
Setting up the build environment
This tutorial assumes you are on Linux on which you have successfully built C++ applications - in other words, we assume that appropriate tooling and libraries have been installed.
Set up your build environment as follows:
-
If you have not already done so, download and install Bazel 0.19 or later.
-
Download the example C++ project from GitHub and place it in an empty directory on your local machine.
-
Add the following
cc_binary
target to themain/BUILD
file:cc_binary( name = "helloworld.js", srcs = ["helloworld.cc"], )
-
Create a
.bazelrc
file at the root of the workspace directory with the following contents to enable the use of the--config
flag:# Create a new CROSSTOOL file for our toolchain. build:asmjs --crosstool_top=//toolchain:emscripten # Use --cpu as a differentiator. build:asmjs --cpu=asmjs # Specify a "sane" C++ toolchain for the host platform. build:asmjs --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
In this example, we are using the --cpu
flag as a differentiator, since
emscripten
can target both asmjs
and Web assembly. We are not configuring a
Web assembly toolchain, however. Since Bazel uses many internal tools written in
C++, such as process-wrapper, we are specifying a “sane” C++ toolchain for the
host platform.
Configuring the C++ toolchain
To configure the C++ toolchain, repeatedly build the application and eliminate each error one by one as described below.
Note: This tutorial assumes you’re using Bazel 0.19 or later. If you’re using an older release of Bazel, the build errors listed may appear in a different order, but the configuration procedure is the same.
-
Run the build with the following command:
bazel build --config=asmjs helloworld.js
Because you specified
--crosstool_top=//toolchain:emscripten
in the.bazelrc
file, Bazel throws the following error:No such package `toolchain`: BUILD file not found on package path.
In the workspace directory, create the
toolchain
directory for the package and an emptyBUILD
file inside thetoolchain
directory. -
Run the build again. Because the
toolchain
package does not yet define theemscripten
target, Bazel throws the following error:No such target '//toolchain:emscripten': target 'emscripten' not declared in package 'toolchain' defined by .../toolchain/BUILD
In the
toolchain/BUILD
file, define an empty filegroup as follows:package(default_visibility = ['//visibility:public']) filegroup(name = "emscripten")
-
Run the build again. Bazel throws the following error:
The specified --crosstool_top '//toolchain:emscripten' is not a valid cc_toolchain_suite rule.
Bazel discovered that the
--crosstool_top
flag does not point to thecc_toolchain_suite
rule. In thetoolchain/BUILD
file, replace the empty filegroup with the following:cc_toolchain_suite( name = "emscripten", toolchains = { "asmjs": ":asmjs_toolchain", "asmjs|emscripten": ":asmjs_toolchain", }, )
The
toolchains
attribute automatically maps the--cpu
(and also--compiler
when specified) values tocc_toolchain
. You have not yet defined anycc_toolchain
targets and Bazel will complain about that shortly. -
Run the build again. Bazel throws the following error:
The crosstool_top you specified was resolved to '//toolchain:emscripten', which does not contain a CROSSTOOL file.
Bazel expects a
CROSSTOOL
file in thetooolchain:emscripten
package. Create an emptyCROSSTOOL
file inside thetoolchain
directory. -
Run the build again. Bazel throws the following error:
Could not read the crosstool configuration file 'CROSSTOOL file .../toolchain/CROSSTOOL', because of an incomplete protocol buffer (Message missing required fields: major_version, minor_version, default_target_cpu)
Bazel read the
CROSSTOOL
file and found nothing inside. Populate theCROSTOOL
file as follows:major_version: "1" minor_version: "0" default_target_cpu: "asmjs"
-
Run the build again. Bazel throws the following error:
The label '//toolchain:asmjs_toolchain' is not a cc_toolchain rule.
This is an important milestone in which you define
cc_toolchain
targets for every toolchain in theCROSSTOOL
file. This is where you specify the files that comprise the toolchain so that Bazel can set up sandboxing. Add the following to thetoolchain/BUILD
file:filegroup(name = "empty") cc_toolchain( name = "asmjs_toolchain", toolchain_identifier = "asmjs-toolchain", all_files = ":empty", compiler_files = ":empty", cpu = "asmjs", dwp_files = ":empty", dynamic_runtime_libs = [":empty"], linker_files = ":empty", objcopy_files = ":empty", static_runtime_libs = [":empty"], strip_files = ":empty", supports_param_files = 0, )
-
Run the build again. Bazel throws the following error:
No toolchain found for cpu 'asmjs'.
Since you have specified
--crosstool_top
and--cpu
in the.bazelrc
file,//toolchain:asmjs_toolchain
is selected. Because we specifytoolchain_identifier = "asmjs-toolchain"
, we need to create a toolchain definition with this identifier. Add the following to theCROSTOOL
file:toolchain { toolchain_identifier: "asmjs-toolchain" host_system_name: "i686-unknown-linux-gnu" target_system_name: "asmjs-unknown-emscripten" target_cpu: "asmjs" target_libc: "unknown" compiler: "emscripten" abi_version: "unknown" abi_libc_version: "unknown" }
The above definition also specifies the compiler, which you can use to more precisely select the C++ toolchain.
Because we want to omit the
--compiler
flag and only use the--cpu
flag, we have added aasmjs
key intocc_toolchain_suite.toolchains
. -
Run the build again. Bazel throws the following error:
.../BUILD:1:1: C++ compilation of rule '//:helloworld.js' failed (Exit 1) src/main/tools/linux-sandbox-pid1.cc:421: "execvp(toolchain/DUMMY_GCC_TOOL, 0x11f20e0)": No such file or directory Target //:helloworld.js failed to build`
At this point, Bazel has enough information to attempt building the code but it still does not know what tools to use to complete the required build actions. Add the following to your
CROSSTOOL
file to tell Bazel what tools to use:# toolchain/CROSSTOOL # ... tool_path { name: "gcc" path: "emcc.sh" } tool_path { name: "ld" path: "emcc.sh" } tool_path { name: "ar" path: "/bin/false" } tool_path { name: "cpp" path: "/bin/false" } tool_path { name: "gcov" path: "/bin/false" } tool_path { name: "nm" path: "/bin/false" } tool_path { name: "objdump" path: "/bin/false" } tool_path { name: "strip" path: "/bin/false" }
You may notice the
emcc.sh
wrapper script, which delegates to the externalemcc.py
file. Create the script in thetoolchain
package directory with the following contents and set its executable bit:#!/bin/bash set -euo pipefail python external/emscripten_toolchain/emcc.py "$@"
Paths specified in the
CROSSTOOL
file are relative to the location of theCROSSTOOL
file itself.The
emcc.py
file does not yet exist in the workspace directory. To obtain it, you can either check theemscripten
toolchain in with your project or pull it from its GitHub repository. This tutorial uses the latter approach. To pull the toolchain from the GitHub repository, add the followingnew_http_archive
repository definitions to yourWORKSPACE
file:new_http_archive( name = 'emscripten_toolchain', url = 'https://github.com/kripken/emscripten/archive/1.37.22.tar.gz', build_file = 'emscripten-toolchain.BUILD', strip_prefix = "emscripten-1.37.22", ) new_http_archive( name = 'emscripten_clang', url = 'https://s3.amazonaws.com/mozilla-games/emscripten/packages/llvm/tag/linux_64bit/emscripten-llvm-e1.37.22.tar.gz', build_file = 'emscripten-clang.BUILD', strip_prefix = "emscripten-llvm-e1.37.22", )
In the workspace directory root, create the
emscripten-toolchain.BUILD
andemscripten-clang.BUILD
files that expose these repositories as filegroups and establish their visibility across the build.First create the
emscripten-toolchain.BUILD
file with the following contents:package(default_visibility = ['//visibility:public']) filegroup( name = "all", srcs = glob(["**/*"]), )
Next, create the
emscripten-clang.BUILD
file with the following contents:package(default_visibility = ['//visibility:public'])` filegroup( name = "all", srcs = glob(["**/*"]), )
You may notice that the targets simply parse all of the files contained in the archives pulled by the
new_http_archive
repository rules. In a real world scenario, you would likely want to be more selective and granular by only parsing the files needed by the build and splitting them by action, such as compilation, linking, and so on. For the sake of simplicity, this tutorial omits this step. -
Run the build again. Bazel throws the following error:
"execvp(toolchain/emcc.sh, 0x12bd0e0)": No such file or directory
You now need to make Bazel aware of the artifacts you added in the previous step. In particular, the
emcc.sh
script must also be explicitly listed as a dependency of the correspondingcc_toolchain
rule. Modify thetoolchain/BUILD
file to look as follows:package(default_visibility = ['//visibility:public']) cc_toolchain_suite( name = "emscripten", toolchains = { "asmjs": ":asmjs_toolchain", "asmjs|emscripten": ":asmjs_toolchain", }, ) filegroup(name = "empty") filegroup( name = "all", srcs = [ "emcc.sh", "@emscripten_toolchain//:all", "@emscripten_clang//:all" ], ) cc_toolchain( name = "asmjs_toolchain", toolchain_identifier = "asmjs-toolchain", all_files = ":all", compiler_files = ":all", cpu = "asmjs", dwp_files = ":empty", dynamic_runtime_libs = [":empty"], linker_files = ":all", objcopy_files = ":empty", static_runtime_libs = [":empty"], strip_files = ":empty", supports_param_files = 0, )
Congratulations! You are now using the
emscripten
toolchain to build your C++ sample code. The next steps are optional but are included for completeness. -
(Optional) Run the build again. Bazel throws the following error:
ERROR: .../BUILD:1:1: C++ compilation of rule '//:helloworld.js' failed (Exit 1)
The next step is to make the toolchain deterministic and hermetic - that is, limit it to only touch files it’s supposed to touch and ensure it doesn’t write temporary data outside the sandbox.
You also need to ensure the toolchain does not assume the existence of your home directory with its configuration files and that it does not depend on unspecified environment variables.
For our example project, make the following modifications to the
toolchain/BUILD
file:filegroup( name = "all", srcs = [ "emcc.sh", "@emscripten_toolchain//:all", "@emscripten_clang//:all", ":emscripten_cache_content" ], ) filegroup( name = "emscripten_cache_content", srcs = glob(["emscripten_cache/**/*"]), )
Since
emscripten
caches standard library files, you can save time by not compilingstdlib
for every action and also prevent it from storing temporary data in random place, check in the precompiled bitcode files into thetoolchain/emscript_cache directory
. You can create them by calling the following from theemscripten_clang
repository (or letemscripten
create them in~/.emscripten_cache
):embuilder.py build dlmalloc libcxx libc gl libcxxabi libcxx_noexcept wasm-libc
Copy those files to
toolchain/emscripten_cache
. Modify yourtoolchain/BUILD
file to look as follows:filegroup( name = "all", srcs = [ "emcc.sh", "@emscripten_toolchain//:all", "@emscripten_clang//:all", ":emscripten_cache_content" ], ) filegroup( name = "emscripten_cache_content", srcs = glob(["emscripten_cache/**/*"]), )
Also update the
emcc.sh
script to look as follows:#!/bin/bash set -euo pipefail export LLVM_ROOT='external/emscripten_clang' export EMSCRIPTEN_NATIVE_OPTIMIZER='external/emscripten_clang/optimizer' export BINARYEN_ROOT='external/emscripten_clang/' export NODE_JS='' export EMSCRIPTEN_ROOT='external/emscripten_toolchain' export SPIDERMONKEY_ENGINE='' export EM_EXCLUSIVE_CACHE_ACCESS=1 export EMCC_SKIP_SANITY_CHECK=1 export EMCC_WASM_BACKEND=0 mkdir -p "tmp/emscripten_cache" export EM_CACHE="tmp/emscripten_cache" export TEMP_DIR="tmp" # Prepare the cache content so emscripten doesn't keep rebuilding it cp -r toolchain/emscripten_cache/* tmp/emscripten_cache # Run emscripten to compile and link python external/emscripten_toolchain/emcc.py "$@" # Remove the first line of .d file find . -name "*.d" -exec sed -i '2d' {} \;
Bazel can now properly compile the sample C++ code in
helloworld.cc
. -
(Optional) Run the build again. Bazel throws the following error:
..../BUILD:1:1: undeclared inclusion(s) in rule '//:helloworld.js': this rule is missing dependency declarations for the following files included by 'helloworld.cc': '.../external/emscripten_toolchain/system/include/libcxx/stdio.h' '.../external/emscripten_toolchain/system/include/libcxx/__config' '.../external/emscripten_toolchain/system/include/libc/stdio.h' '.../external/emscripten_toolchain/system/include/libc/features.h' '.../external/emscripten_toolchain/system/include/libc/bits/alltypes.h'
At this point you have successfully compiled the example C++ code. The error above occurs because Bazel uses a
.d
file produced by the compiler to verify that all includes have been declared and to prune action inputs.In the
.d
file, Bazel discovered that our source code references system headers that have not been explicitly declared in theBUILD
file. This in and of itself is not a problem and you can easily fix this by adding the target folders as-isystem
directories to the toolchain definition in theCROSSTOOL
file as follows:compiler_flag: "-isystem" compiler_flag: "external/emscripten_toolchain/system/include/libcxx" compiler_flag: "-isystem" compiler_flag: "external/emscripten_toolchain/system/include/libc"
-
(Optional) Run the build again. With this final change, the build now completes error-free.