Home
last modified time | relevance | path

Searched refs:sysroot (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/external/cronet/build/config/
Dsysroot.gni5 # 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.
27 if (sysroot == "") {
[all …]
/external/angle/build/config/
Dsysroot.gni5 # 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 == "") {
[all …]
/external/angle/build/config/linux/
Dpkg-config.py52 sysroot = options.sysroot
53 assert sysroot
57 if sysroot and not arch:
61 libdir = sysroot + '/usr/' + options.system_libdir + '/pkgconfig'
62 libdir += ':' + sysroot + '/usr/share/pkgconfig'
96 def RewritePath(path, strip_prefix, sysroot): argument
98 if os.path.isabs(path) and not path.startswith(sysroot):
102 return os.path.join(sysroot, path)
138 if options.sysroot:
208 sysroot = options.sysroot
[all …]
Dpkg_config.gni5 import("//build/config/sysroot.gni")
32 # the sysroot mechanism to find the right .pc files.
57 if (sysroot != "") {
58 # Pass the sysroot if we're using one (it requires the CPU arch also).
61 rebase_path(sysroot),
74 # Only use the custom libdir when building with the target sysroot.
75 if (target_sysroot != "" && sysroot == target_sysroot) {
/external/cronet/build/config/linux/
Dpkg-config.py52 sysroot = options.sysroot
53 assert sysroot
57 if sysroot and not arch:
61 libdir = sysroot + '/usr/' + options.system_libdir + '/pkgconfig'
62 libdir += ':' + sysroot + '/usr/share/pkgconfig'
96 def RewritePath(path, strip_prefix, sysroot): argument
98 if os.path.isabs(path) and not path.startswith(sysroot):
102 return os.path.join(sysroot, path)
138 if options.sysroot:
208 sysroot = options.sysroot
[all …]
Dpkg_config.gni5 import("//build/config/sysroot.gni")
32 # the sysroot mechanism to find the right .pc files.
57 if (sysroot != "") {
58 # Pass the sysroot if we're using one (it requires the CPU arch also).
61 rebase_path(sysroot),
74 # Only use the custom libdir when building with the target sysroot.
75 if (target_sysroot != "" && sysroot == target_sysroot) {
/external/mesa3d/.gitlab-ci/
Dcreate-android-ndk-pc.sh13 sysroot=$ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot
20 pcdir=$sysroot/usr/lib/$arch/pkgconfig
24 prefix=$sysroot
25 exec_prefix=$sysroot
26 libdir=$sysroot/usr/lib/$arch/29
27 sharedlibdir=$sysroot/usr/lib/$arch
28 includedir=$sysroot/usr/include
35 Libs: -L$sysroot/usr/lib/$arch/29 $libs
36 Cflags: -I$sysroot/usr/include $cflags
/external/openscreen/build/config/
Dsysroot.gni5 # 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 sysroot = ""
11 # The relative path to directory containing sysroot images
23 # By default build against a sysroot image downloaded from Cloud Storage
25 sysroot =
26 "${target_sysroot_dir}/debian_${sysroot_platform}_${current_cpu}-sysroot"
30 [ rebase_path(sysroot) ],
32 exec_script("//build/scripts/install-sysroot.py",
/external/angle/build/config/siso/
Dclang_linux.star14 "build/linux/debian_bullseye_amd64-sysroot/usr/include:include": {
19 "build/linux/debian_bullseye_amd64-sysroot/usr/lib:headers": {
23 "build/linux/debian_bullseye_i386-sysroot/usr/include:include": {
28 "build/linux/debian_bullseye_i386-sysroot/usr/lib:headers": {
32 …"third_party/android_toolchain/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include:include":…
37 …"third_party/android_toolchain/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/local/include:inc…
54 # sysroot headers for precomputed subtrees
55 "build/linux/debian_bullseye_amd64-sysroot:headers": [
56 "build/linux/debian_bullseye_amd64-sysroot/usr/include:include",
57 "build/linux/debian_bullseye_amd64-sysroot/usr/lib:headers",
[all …]
/external/toolchain-utils/compiler_wrapper/
Dsysroot_flag.go25 sysroot, syrootPresent := builder.env.getenv("SYSROOT")
29 if sysroot == "" {
31 sysroot = filepath.Join(builder.rootPath, "usr", builder.target.target)
34 builder.addPreUserArgs("--sysroot=" + sysroot)
36 sysroot = userSysroot
39 libdir := "-L" + sysroot + "/usr/lib"
/external/cronet/build/config/posix/
DBUILD.gn5 import("//build/config/sysroot.gni")
28 if (!is_apple && sysroot != "" && current_os != "zos") {
29 # Pass the sysroot to all C compiler variants, the assembler, and linker.
30 sysroot_flags = [ "--sysroot=" + rebase_path(sysroot, root_build_dir) ]
32 # This is here so that all files get recompiled after a sysroot roll and
33 # when turning the sysroot on or off. (defines are passed via the command
37 exec_script("//build/linux/sysroot_scripts/install-sysroot.py",
48 # the sysroot includes take lower precendence than the libc++
52 # 'cflags'." Because of this, we must set the sysroot flags for
/external/angle/build/config/posix/
DBUILD.gn5 import("//build/config/sysroot.gni")
28 if (!is_apple && sysroot != "" && current_os != "zos") {
29 # Pass the sysroot to all C compiler variants, the assembler, and linker.
30 sysroot_flags = [ "--sysroot=" + rebase_path(sysroot, root_build_dir) ]
32 # This is here so that all files get recompiled after a sysroot roll and
33 # when turning the sysroot on or off. (defines are passed via the command
37 exec_script("//build/linux/sysroot_scripts/install-sysroot.py",
48 # the sysroot includes take lower precendence than the libc++
52 # 'cflags'." Because of this, we must set the sysroot flags for
/external/bazelbuild-kotlin-rules/bazel/
Dgcc_toolchain_linux_x86_64.BUILD22 "x86_64-unknown-linux-gnu/sysroot/usr/lib/crt1.o",
23 "x86_64-unknown-linux-gnu/sysroot/usr/lib/crti.o",
24 "x86_64-unknown-linux-gnu/sysroot/usr/lib/crtn.o",
40 "x86_64-unknown-linux-gnu/sysroot/lib/*.a",
41 "x86_64-unknown-linux-gnu/sysroot/usr/lib/*.a",
42 "x86_64-unknown-linux-gnu/sysroot/lib/*.so*",
43 "x86_64-unknown-linux-gnu/sysroot/usr/lib/*.so*",
/external/protobuf/toolchain/
DBUILD.bazel46 sysroot = "/opt/manylinux/2014/x86_64",
53 sysroot = "/opt/manylinux/2014/aarch64",
62 sysroot = "/opt/manylinux/2014/ppc64le",
70 sysroot = "/opt/manylinux/2014/s390x",
78 sysroot = "/opt/manylinux/2014/i686",
86 sysroot = "/opt/manylinux/2014/x86_64",
98 sysroot = "/usr/tools/apple_sdks/xcode_13_0/macosx",
110 sysroot = "/usr/tools/apple_sdks/xcode_13_0/macosx",
128 sysroot = "/usr/i686-w64-mingw32",
144 sysroot = "/usr/x86_64-w64-mingw32",
Dcc_toolchain_config.bzl116 #Only enable this if a sysroot was specified
117 enabled = (ctx.attr.sysroot != ""),
124 "--sysroot",
125 ctx.attr.sysroot,
153 ctx.attr.sysroot,
206 ctx.attr.sysroot,
228 "sysroot": attr.string(mandatory = False),
/external/python/cffi/
Dsetup.py20 def _ask_pkg_config(resultlist, option, result_prefix='', sysroot=False): argument
39 sysroot = sysroot and os.environ.get('PKG_CONFIG_SYSROOT_DIR', '')
40 if sysroot:
43 res = [path if path.startswith(sysroot)
44 else sysroot + path
111 _ask_pkg_config(include_dirs, '--cflags-only-I', '-I', sysroot=True)
113 _ask_pkg_config(library_dirs, '--libs-only-L', '-L', sysroot=True)
/external/openscreen/build/scripts/
Dinstall-sysroot.py108 sysroot = os.path.join(PARENT_DIR, sysroot_dict['SysrootDir'])
113 stamp = os.path.join(sysroot, '.stamp')
119 if os.path.isdir(sysroot):
120 shutil.rmtree(sysroot)
121 os.mkdir(sysroot)
123 tarball_path = os.path.join(sysroot, tarball_filename)
126 subprocess.check_call(['tar', 'xf', tarball_path, '-C', sysroot])
/external/cronet/third_party/googletest/src/docs/
Dpkgconfig.md76 your sysroot is `/home/MYUSER/sysroot`. Configure and install GTest using
82 Install into the sysroot using `DESTDIR`:
85 make -j install DESTDIR=/home/MYUSER/sysroot
114 Notice that the sysroot is not included in `libdir` and `includedir`! If you try
116 `PKG_CONFIG_LIBDIR=/home/MYUSER/sysroot/usr/lib64/pkgconfig` against this `.pc`
128 inject the actual sysroot into `-I` and `-L` variables. Let us now tell
129 pkg-config about the actual sysroot
133 export PKG_CONFIG_SYSROOT_DIR=/home/MYUSER/sysroot
141 -DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include
143 -L/home/MYUSER/sysroot/usr/lib64 -lgtest -lpthread
[all …]
/external/cronet/third_party/boringssl/src/third_party/googletest/docs/
DPkgconfig.md78 your sysroot is `/home/MYUSER/sysroot`. Configure and install GTest using
84 Install into the sysroot using `DESTDIR`:
87 make -j install DESTDIR=/home/MYUSER/sysroot
116 Notice that the sysroot is not included in `libdir` and `includedir`! If you try
118 `PKG_CONFIG_LIBDIR=/home/MYUSER/sysroot/usr/lib64/pkgconfig` against this `.pc`
130 inject the actual sysroot into `-I` and `-L` variables. Let us now tell
131 pkg-config about the actual sysroot
135 export PKG_CONFIG_SYSROOT_DIR=/home/MYUSER/sysroot
143 -DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include
145 -L/home/MYUSER/sysroot/usr/lib64 -lgtest -lpthread
[all …]
/external/googletest/docs/
Dpkgconfig.md76 your sysroot is `/home/MYUSER/sysroot`. Configure and install GTest using
82 Install into the sysroot using `DESTDIR`:
85 make -j install DESTDIR=/home/MYUSER/sysroot
114 Notice that the sysroot is not included in `libdir` and `includedir`! If you try
116 `PKG_CONFIG_LIBDIR=/home/MYUSER/sysroot/usr/lib64/pkgconfig` against this `.pc`
128 inject the actual sysroot into `-I` and `-L` variables. Let us now tell
129 pkg-config about the actual sysroot
133 export PKG_CONFIG_SYSROOT_DIR=/home/MYUSER/sysroot
141 -DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include
143 -L/home/MYUSER/sysroot/usr/lib64 -lgtest -lpthread
[all …]
/external/autotest/client/cros/
Dfactory_setup_modules.py13 sysroot = os.environ.get('SYSROOT') variable
14 extra_path = ([os.path.join(sysroot, 'usr/local/factory/py_pkg')]
15 if sysroot else [])
/external/perfetto/buildtools/
D.gitignore15 debian_sid_arm-sysroot/
16 debian_sid_arm64-sysroot/
17 debian_sid_armel-sysroot/
/external/autotest/client/deps/policy_protos/
Dpolicy_protos.py35 sysroot = os.environ['SYSROOT']
37 include_args = ['--proto_path=' + os.path.join(sysroot, d) for d in dirs]
38 proto_paths = [os.path.join(sysroot, p) for p in PROTO_PATHS]
/external/perfetto/gn/standalone/toolchain/
DBUILD.gn55 sysroot = ""
127 rebase_path("//buildtools/debian_sid_arm64-sysroot", root_build_dir)
131 rebase_path("//buildtools/debian_sid_arm-sysroot", root_build_dir)
158 if (sysroot != "") {
159 # If the user specifies a sysroot, use that for both host and target.
160 target_sysroot = sysroot
162 # If no explicit sysroot has been set, use the guessed sysroot from the ones
229 if (defined(invoker.sysroot) && invoker.sysroot != "") {
230 _invoker_sysroot = invoker.sysroot
231 cc = "$cc --sysroot=$_invoker_sysroot"
[all …]
/external/cronet/third_party/lss/tests/
DMakefile128 sysroot=`$$cc --print-sysroot 2>/dev/null`; \
140 : Assume the build system is x86_64 based, so ignore the sysroot.; \
143 *) cc="$$cc --sysroot $$sysroot -B$$gccdir -L$$gccdir";; \

12345678910>>...12