Lines Matching refs:sysroot
5 # This header file defines the "sysroot" variable which is the absolute path
6 # of the sysroot. If no sysroot applies, the variable will be an empty string.
9 # The path of the sysroot that is applied when compiling using the target
13 # The path to directory containing linux sysroot images.
16 # The path of the sysroot for the current toolchain. If empty, default
17 # sysroot is used.
18 sysroot = ""
20 # Controls default is_linux sysroot. If set to true, and sysroot
21 # is empty, default sysroot is calculated.
28 if (sysroot == "") {
31 sysroot = target_sysroot
35 # Android uses unified headers, and thus a single compile time sysroot
36 sysroot = "$android_toolchain_root/sysroot"
38 # By default build against a sysroot image downloaded from Cloud Storage
41 sysroot = "$target_sysroot_dir/debian_bullseye_amd64-sysroot"
43 sysroot = "$target_sysroot_dir/debian_bullseye_i386-sysroot"
45 sysroot = "$target_sysroot_dir/debian_bullseye_mipsel-sysroot"
47 sysroot = "$target_sysroot_dir/debian_bullseye_mips64el-sysroot"
49 sysroot = "$target_sysroot_dir/debian_bullseye_armhf-sysroot"
51 sysroot = "$target_sysroot_dir/debian_bullseye_arm64-sysroot"
53 assert(false, "No linux sysroot for cpu: $target_cpu")
56 if (sysroot != "") {
65 [ rebase_path(sysroot) ],
67 …"Missing sysroot ($sysroot). To fix, run: build/linux/sysroot_scripts/install-sysroot.py --arch=$_…
71 sysroot = mac_sdk_path
74 sysroot = ios_sdk_path
77 sysroot = "//third_party/fuchsia-sdk/sdk/arch/$current_cpu/sysroot"