| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/ |
| H A D | 0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch | 2 Subject: [PATCH 02/12] libtool.m4: Rename the --with-sysroot option to avoid conflict with gcc/binu… 4 This patch renames the --with-sysroot option to --with-libtool-sysroot 23 AC_MSG_CHECKING([for sysroot]) 24 -AC_ARG_WITH([sysroot], 25 -[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], 26 +AC_ARG_WITH([libtool-sysroot], 27 +[AS_HELP_STRING([--with-libtool-sysroot@<:@=DIR@:>@], 28 [Search for dependent libraries within DIR (or the compiler's sysroot 40 lt_sysroot=`$CC --print-sysroot 2>/dev/null` 52 AC_MSG_ERROR([The sysroot must be an absolute path.]) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | sysroot.py | 13 Build sysroot test which depends on virtual/sysroot-test for one machine, 14 switch machine, switch provider of virtual/sysroot-test and check that the 15 sysroot is correctly cleaned up. The files in the two providers overlap 16 so can cause errors if the sysroot code doesn't function correctly. 17 Yes, sysroot-test should be machine specific really to avoid this, however 18 the sysroot cleanup should also work [YOCTO #13702]. 25 PREFERRED_PROVIDER_virtual/sysroot-test = "sysroot-test-arch1" 27 TESTSTRING:pn-sysroot-test-arch1 = "%s" 28 TESTSTRING:pn-sysroot-test-arch2 = "%s" 30 bitbake("sysroot-test") [all …]
|
| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/ |
| H A D | 0017-clang-driver-Add-dyld-prefix-when-checking-sysroot-f.patch | 4 Subject: [PATCH] clang: driver: Add dyld-prefix when checking sysroot for ldso 11 'clang: driver: Check sysroot for ldso path' which includes 28 - if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 29 - getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) { 30 + if (!getVFS().exists(getDriver().SysRoot + getDriver().DyldPrefix + "/" + LibDir + "/" + Loade… 31 + getVFS().exists(getDriver().SysRoot + getDriver().DyldPrefix + "/lib/" + Loader)) { 39 - if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 40 - getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) { 41 + if (!getVFS().exists(getDriver().SysRoot + getDriver().DyldPrefix + "/" + LibDir + "/" + Loade… 42 + getVFS().exists(getDriver().SysRoot + getDriver().DyldPrefix + "/lib/" + Loader)) { [all …]
|
| H A D | 0008-clang-Prepend-trailing-to-sysroot.patch | 4 Subject: [PATCH] clang: Prepend trailing '/' to sysroot 7 isntall and target sysroot are perilously same 11 sysroot = /mnt/clang/recipe-sysroot 12 clang install = /mnt/clang/recipe-sysroot-native 15 clang is installed under the same sysroot dir 19 installation and not sysroot 34 - std::string SysRoot = computeSysRoot(); 35 + std::string SysRoot = computeSysRoot() + "/";
|
| H A D | 0032-Correct-library-search-path-for-OpenEmbedded-Host.patch | 11 compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/clang 13 -isystem/path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/include 15 /path/to/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/share/cmake-3.21/Modules/CMakeCComp… 22 b59da142f2b0:$ /path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/cla… 23 programs: =/build/tmp-glibc/work/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/us… 24 …e/13.0.1-r0/recipe-sysroot-native/usr/lib/clang/13.0.1:/build/tmp-glibc/work/x86_64-linux/compiler… 27 b59da142f2b0:$ /path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/cla… 28 programs: =/build/tmp-glibc/work/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/us… 29 …sysroot-native/usr/lib/clang/13.0.1:/usr/lib/x86_64-wrs-linux/10.2.0://lib/x86_64-wrs-linux://usr/…
|
| H A D | 0005-llvm-allow-env-override-of-exe-and-libdir-path.patch | 6 When using a native llvm-config from inside a sysroot, we need llvm-config to 7 return the libraries, include directories, etc. from inside the sysroot rather 8 than from the native sysroot. Thus provide an env override for calling 9 llvm-config from a target sysroot. 30 + // llvm-config from within a target sysroot. 31 + const char *Sysroot = std::getenv("YOCTO_ALTERNATE_EXE_PATH"); 32 + if (Sysroot != nullptr) { 33 + return Sysroot; 54 + // llvm-config from within a target sysroot since LLVM_LIBDIR_SUFFIX
|
| H A D | 0006-clang-driver-Check-sysroot-for-ldso-path.patch | 4 Subject: [PATCH] clang: driver: Check sysroot for ldso path 24 + if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 25 + getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) { 33 + if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 34 + getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) { 44 + if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 45 + getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) { 55 + if (!getVFS().exists(getDriver().SysRoot + "/" + LibDir + "/" + Loader) && 56 + getVFS().exists(getDriver().SysRoot + "/lib/" + Loader)) {
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0018-Search-target-sysroot-gcc-version-specific-dirs-with.patch | 4 Subject: [PATCH] Search target sysroot gcc version specific dirs with 8 <sysroot><libdir>/<target-sys>/5.2.0/ 20 The default gcc search path in the target sysroot for a "lib64" mutlilib 23 <sysroot>/lib32/mips64-poky-linux/5.2.0/ 24 <sysroot>/lib32/../lib64/ 25 <sysroot>/usr/lib32/mips64-poky-linux/5.2.0/ 26 <sysroot>/usr/lib32/../lib64/ 27 <sysroot>/lib32/ 28 <sysroot>/usr/lib32/ 36 <sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/ [all …]
|
| /OK3568_Linux_fs/buildroot/package/qt5/qt5webengine-chromium/ |
| H A D | 0002-Don-t-rebase-sysroot-path.patch | 4 Subject: [PATCH] Don't rebase sysroot path 6 Just use the actual sysroot as rebase_path will generate an invalid 7 sysroot path. 23 if (!is_apple && sysroot != "") { 24 # Pass the sysroot to all C compiler variants, the assembler, and linker. 25 - sysroot_flags = [ "--sysroot=" + rebase_path(sysroot, root_build_dir) ] 26 + sysroot_flags = [ "--sysroot=" + sysroot ] 28 # This is here so that all files get recompiled after a sysroot roll and 29 # when turning the sysroot on or off. (defines are passed via the command
|
| /OK3568_Linux_fs/yocto/poky/meta/conf/ |
| H A D | multilib.conf | 9 STAGING_DIR_HOST = "${WORKDIR}/${MLPREFIX}recipe-sysroot" 10 STAGING_DIR_TARGET = "${WORKDIR}/${MLPREFIX}recipe-sysroot" 11 RECIPE_SYSROOT = "${WORKDIR}/${MLPREFIX}recipe-sysroot" 12 RECIPE_SYSROOT:class-native = "${WORKDIR}/recipe-sysroot" 14 PSEUDO_IGNORE_PATHS .= ",${WORKDIR}/${MLPREFIX}recipe-sysroot" 25 # sysroot, not MLPREFIXMACHINE. This means that anything using pkg-config to 27 # inside the multilib sysroot. Fix this by explicitly adding the MACHINE's 29 PKG_CONFIG_PATH .= ":${WORKDIR}/recipe-sysroot/${datadir}/pkgconfig" 31 PKG_CONFIG_PATH[vardepvalueexclude] = ":${WORKDIR}/recipe-sysroot/${datadir}/pkgconfig"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/grpc/grpc/ |
| H A D | 0001-Revert-Changed-GRPCPP_ABSEIL_SYNC-to-GPR_ABSEIL_SYNC.patch | 13 | : && /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native/us… 14 urity --sysroot=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot… 15 …E/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … 16 …sysroot-native= -fvisibility-inlines-hidden -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -… 17 /oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wall -ggdb -std=c++0x … 18 --sysroot=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -O2 -… 19 …E/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … 20 …sysroot-native= -fvisibility-inlines-hidden -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -… 21 e/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wl,-O1 -Wl,--hash-style=gnu -Wl… 22 …E/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/ |
| H A D | 0010-eglibc-Cross-building-and-testing-instructions.patch | 103 +place our sysroot (containing files to be installed on the target 104 +system) in 'sysroot': 108 + $ sysroot=$top/sysroot 120 + > --with-sysroot=$sysroot 170 +Now we're ready to install the headers into the sysroot: 175 + > INSTALL_HDR_PATH=$sysroot/usr 193 + > --with-headers=$sysroot/usr/include \ 203 +prefix, you will get a sysroot that does not use the standard Linux 219 + $ make install-headers install_root=$sysroot \ 225 +'$sysroot/usr/include'. The 'install-bootstrap-headers' variable [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rust/rust-llvm/ |
| H A D | 0002-llvm-allow-env-override-of-exe-path.patch | 6 When using a native llvm-config from inside a sysroot, we need llvm-config to 7 return the libraries, include directories, etc. from inside the sysroot rather 8 than from the native sysroot. Thus provide an env override for calling 9 llvm-config from a target sysroot. 25 + // llvm-config from within a target sysroot. 26 + const char *Sysroot = std::getenv("YOCTO_ALTERNATE_EXE_PATH"); 27 + if (Sysroot != nullptr) { 28 + return Sysroot;
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-sato/webkit/webkitgtk/ |
| H A D | 0001-When-building-introspection-files-do-not-quote-CFLAG.patch | 8 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/x8… 9 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr/lib/x8… 10 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/lib/glib-2.0/… 11 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-… 12 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-… 13 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-… 15 /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-na… 18 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-… 19 …oky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/include/glib-… 21 /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/us… [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/llvm/llvm/ |
| H A D | 0007-llvm-allow-env-override-of-exe-path.patch | 9 When using a native llvm-config from inside a sysroot, we need llvm-config to 10 return the libraries, include directories, etc. from inside the sysroot rather 11 than from the native sysroot. Thus provide an env override for calling 12 llvm-config from a target sysroot. 29 + // llvm-config from within a target sysroot. 30 + const char *Sysroot = std::getenv("YOCTO_ALTERNATE_EXE_PATH"); 31 + if (Sysroot != nullptr) { 32 + return Sysroot;
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/ca-certificates/ca-certificates/ |
| H A D | 0003-update-ca-certificates-use-relative-symlinks-from-ET.patch | 20 not into the $SYSROOT. This means: 28 because they all need to be taught about $SYSROOT, and 51 @@ -29,6 +29,7 @@ CERTSDIR=$SYSROOT/usr/share/ca-certificates 52 LOCALCERTSDIR=$SYSROOT/usr/local/share/ca-certificates 54 ETCCERTSDIR=$SYSROOT/etc/ssl/certs 56 HOOKSDIR=$SYSROOT/etc/ca-certificates/update.d 63 - if ! test -e "$PEM" || [ "$(readlink "$PEM")" != "${CERT##$SYSROOT}" ] 64 + DST="$(echo ${CERT} | sed -e "s|^$SYSROOT||" -e "s|^/|$FSROOT|" )" 67 - ln -sf "${CERT##$SYSROOT}" "$PEM"
|
| H A D | 0002-update-ca-certificates-use-SYSROOT.patch | 6 Subject: [PATCH 2/2] update-ca-certificates: use $SYSROOT 24 +CERTSCONF=$SYSROOT/etc/ca-certificates.conf 25 +CERTSDIR=$SYSROOT/usr/share/ca-certificates 26 +LOCALCERTSDIR=$SYSROOT/usr/local/share/ca-certificates 30 +ETCCERTSDIR=$SYSROOT/etc/ssl/certs 31 +HOOKSDIR=$SYSROOT/etc/ca-certificates/update.d 40 + if ! test -e "$PEM" || [ "$(readlink "$PEM")" != "${CERT##$SYSROOT}" ] 43 + ln -sf "${CERT##$SYSROOT}" "$PEM"
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | crosstap | 36 self.sysroot = None 81 if self.sysroot: 82 ret.append("--sysroot") 83 ret.append(self.sysroot) 183 with --sysroot option. 258 sysroot = self.image_rootfs 260 print("ERROR: Cannot find '" + sysroot + 311 if not stap.sysroot: 314 stap.sysroot = self.image_rootfs + "-dbg" 316 stap.sysroot = self.image_rootfs [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | staging.bbclass | 1 # These directories will be staged in the sysroot 8 /sysroot-only \ 11 # These directories are also staged in the sysroot when they contain files that 26 # These directories will not be staged in the sysroot 98 SYSROOT_DESTDIR = "${WORKDIR}/sysroot-destdir" 101 # SYSROOT 'version' 2 108 provdir = d.expand("${SYSROOT_DESTDIR}${base_prefix}/sysroot-providers/") 245 # Manifests here are complicated. The main sysroot area has the unpacked sstate 247 # specific sysroot has manifests for each dependency that is installed there. 282 lock = bb.utils.lockfile(recipesysroot + "/sysroot.lock") [all …]
|
| H A D | useradd.bbclass | 4 # target sysroot, and shadow -native and -sysroot provide the utilities 6 DEPENDS:append:class-target = " base-files shadow-native shadow-sysroot shadow base-passwd" 18 SYSROOT="" 21 # Installing into a sysroot 22 SYSROOT="$D" 35 export PSEUDO_PASSWD="$SYSROOT" 38 # If we're not doing a special SSTATE/SYSROOT install 57 perform_groupadd "$SYSROOT" "$OPT $opts" 73 perform_useradd "$SYSROOT" "$OPT $opts" 89 perform_groupmems "$SYSROOT" "$OPT $opts" [all …]
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/ |
| H A D | 0012-chromium-skia-Fix-build-with-gcc-12.patch | 7 …sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -m64 -march=core2 -mtune=core2 -mss… 12 In file included from ../../../../recipe-sysroot/usr/include/c++/12.1.0/utility:73, 17 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:90:5: note: candidate: 'template… 20 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:90:5: note: template argument … 27 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: candidate: 'templat… 30 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: template argument… 37 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: candidate: 'templat… 40 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: template argument…
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/shadow/ |
| H A D | shadow-sysroot_4.6.bb | 6 LIC_FILES_CHKSUM = "file://login.defs_shadow-sysroot;md5=25e2f2de4dfc8f966ac5cdfce45cd7d5" 13 # file for the target sysroot - needed so the shadow-native utilities 15 SRC_URI = "file://login.defs_shadow-sysroot" 21 install -p -m 644 ${S}/login.defs_shadow-sysroot ${D}${sysconfdir}/login.defs 27 # otherwise: dbus-dev depends on shadow-sysroot-dev which depends on shadow-sysroot
|
| /OK3568_Linux_fs/buildroot/toolchain/toolchain-external/ |
| H A D | pkg-toolchain-external.mk | 46 # will allow all further calls to gcc to be made using --sysroot 53 # with a number of arguments (sysroot/march/mtune/..) hardcoded, 290 # - copying the toolchain sysroot to $(STAGING_DIR) 293 # Details about sysroot directory selection. 295 # To find the sysroot directory, we use the trick of looking for the 297 # mangling the path to find the base directory of the sysroot. 299 # Note that we do not use the -print-sysroot option, because it is 304 # multilib variant (such as -march) as we want the "main" sysroot, 307 # path of the cross-compiler, without the --sysroot=$(STAGING_DIR), 309 # sysroot. This "main" sysroot directory is stored in SYSROOT_DIR. [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/squid/files/ |
| H A D | set_sysroot_patch.patch | 4 Subject: [PATCH] Set the SYSROOT for libxml2 header file to avoid host 25 + AC_MSG_NOTICE([Testing in $SYSROOT/usr/include/libxml2]) 28 + CPPFLAGS="-I$SYSROOT/usr/include/libxml2 $CPPFLAGS" 33 + AC_CHECK_HEADERS([libxml/parser.h], [LIBXML2_CFLAGS="$LIBXML2_CFLAGS -I$SYSROOT/usr/includ… 34 + AC_MSG_NOTICE([Testing in $SYSROOT/usr/local/include/libxml2]) 35 + CPPFLAGS="-I$SYSROOT/usr/local/include/libxml2 $SAVED_CPPFLAGS" 38 + AC_CHECK_HEADERS([libxml/parser.h], [LIBXML2_CFLAGS="$LIBXML2_CFLAGS -I$SYSROOT/usr/loca…
|
| /OK3568_Linux_fs/buildroot/package/libopenh264/ |
| H A D | 0001-Add-USE_STACK_PROTECTOR-option.patch | 38 @@ -44,7 +44,10 @@ SYSROOT = $(NDKROOT)/platforms/android-$(NDKLEVEL)/arch-$(ARCH) 42 -CFLAGS += -DANDROID_NDK -fpic --sysroot=$(SYSROOT) -MMD -MP -fstack-protector-all 43 +CFLAGS += -DANDROID_NDK -fpic --sysroot=$(SYSROOT) -MMD -MP 47 …CFLAGS += -isystem $(NDKROOT)/sysroot/usr/include -isystem $(NDKROOT)/sysroot/usr/include/$(TOOLCH… 49 LDFLAGS += --sysroot=$(SYSROOT)
|