Nicolas Jeker
On Fri, 2020-12-04 at 12:17 +0000, Monsees, Steven C (US) via
lists.yoctoproject.org wrote: The log indicates that it is missing a dependency which ships "rpc/rpc.h". Some googling turned up this discussion on the openembedded-core mailing list: https://lists.openembedded.org/g/openembedded-core/topic/72355602#111216 There is a final patch in the last mail of the topic, but it seems that this config option is anyway only required for Linux < 2.6.23. If I modify my_cfg.cfg and remove the above parameter it compiles
|
|
runqemu: GLib: g_mapped_file_unref: assertion 'file != NULL' failed
I am working with Dunfell release. I have a custom aarch64 machine with a custom kernel based on version v4.14.200 building an image based on core-image-minimal. I am trying to run this image under qemu using the runqemu script. I get the following failure. This particular failure was on Ubuntu Fossa, but I also see the same error on a CentOS 7 server.
I would appreciate any help or guidance on how to track down and fix this error. Thanks. mabnhdev@fossa:~/exos-yocto-312/build/exos-arm64$ runqemu runqemu - INFO - Running bitbake -e ... runqemu - INFO - Continuing with the following parameters: KERNEL: [/home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/deploy/images/exos-arm64/vmlinux--4.14.200+git0+ccf595bb27-r0-exos-arm64-20201201163452.bin] MACHINE: [exos-arm64] FSTYPE: [ext4] ROOTFS: [/home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/deploy/images/exos-arm64/core-image-minimal-exos-arm64-20201201163452.rootfs.ext4] CONFFILE: [/home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/deploy/images/exos-arm64/core-image-minimal-exos-arm64-20201201163452.qemuboot.conf] runqemu - INFO - Setting up tap interface under sudo runqemu - INFO - Network configuration: ip=192.168.7.2::192.168.7.1:255.255.255.0 runqemu - INFO - Running /home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-aarch64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/deploy/images/exos-arm64/core-image-minimal-exos-arm64-20201201163452.rootfs.ext4,if=virtio,format=raw -show-cursor -machine virt -m 1024 -serial mon:vc -serial null -kernel /home/mabnhdev/exos-yocto-312/build/exos-arm64/tmp/deploy/images/exos-arm64/vmlinux--4.14.200+git0+ccf595bb27-r0-exos-arm64-20201201163452.bin -append 'root=/dev/vda rw mem=1024M ip=192.168.7.2::192.168.7.1:255.255.255.0 ' runqemu - ERROR - Failed to run qemu: qemu-system-aarch64: GLib: g_mapped_file_unref: assertion 'file != NULL' failed runqemu - INFO - Cleaning up Set 'tap0' nonpersistent
|
|
Monsees, Steven C (US)
I seem to have an issue initializing busybox. I have attached my error log… but basically busybox fails to compile when I set
CONFIG_FEATURE_MOUNT_NFS=y
If I modify my_cfg.cfg and remove the above parameter it compiles clean , (I.E. “# CONFIG_FEATURE_MOUNT_NFS is not set”).
I am assuming my bbappend file is at fault, but do not see it. This setup works correctly under “rocko”, and if I disable “CONFIG_FEATURE_MOUNT_NFS” all appears correct…
Can someone tell me what is going on and how to correct ?
Thanks, Steve
This is my append file:
busybox_%.bbappend:
FILESEXTRAPATHS_prepend := "${THISDIR}/files:" FILESEXTRAPATHS_prepend := "${THISDIR}/busybox:"
SRC_URI_append += " \ file://inetd.conf \ file:// my_cfg.cfg \ file://ftp.cfg \ file://ftpd.cfg \ file://hexdump.cfg \ file://httpd.cfg \ file://inetd.cfg \ file://nc.cfg \ file://telnetd.cfg \ file://tftpd.cfg \ file://coreutils.cfg \ "
PACKAGES =+ "${@plnx_enable_busybox_package('inetd', d)}"
INITSCRIPT_PACKAGES =+ "${@plnx_enable_busybox_package('inetd', d)}"
FILES_${PN}-inetd = "${sysconfdir}/init.d/busybox-inetd ${sysconfdir}/inetd.conf" INITSCRIPT_NAME_${PN}-inetd = "inetd.busybox" INITSCRIPT_PARAMS_${PN}-inetd = "start 65 S ." CONFFILES_${PN}-inetd = "${sysconfdir}/inetd.conf"
RRECOMMENDS_${PN} =+ "${@bb.utils.contains('DISTRO_FEATURES', 'busybox-inetd', '${PN}-inetd', '', d)}"
def plnx_enable_busybox_package(f, d): distro_features = (d.getVar('DISTRO_FEATURES', True) or "").split() if "busybox-" + f in distro_features: return "${PN}-" + f else: return ""
This is my platform specific config file:
my_cfg.cfg:
CONFIG_EXTRA_COMPAT=y CONFIG_INCLUDE_SUSv2=y CONFIG_FEATURE_VERBOSE_USAGE=y CONFIG_UNICODE_SUPPORT=y CONFIG_NICE=y CONFIG_SHA512SUM=y CONFIG_MKFS_VFAT=y CONFIG_FEATURE_TOP_SMP_CPU=y CONFIG_FEATURE_TOP_DECIMALS=y CONFIG_FEATURE_TOP_SMP_PROCESS=y CONFIG_FEATURE_TOPMEM=y CONFIG_FEATURE_MOUNT_VERBOSE=y CONFIG_FEATURE_MOUNT_HELPERS=y CONFIG_FEATURE_MOUNT_NFS=y <<<- if disabled, compiles clean CONFIG_FEATURE_MOUNT_CIFS=y CONFIG_WATCHDOG=y CONFIG_DEVMEM=y CONFIG_LSPCI=y # CONFIG_GZIP is not set # CONFIG_GUNZIP is not set # CONFIG_UNZIP is not set
|
|
Re: Yocto Application Development
#yocto
Maciej Pijanowski
On 04.12.2020 12:17,
vijayrakeshmunganda@... wrote:
Hi All,Eclipse IDE is no longer maintained as far as i know. The best to start would be to follow the Yocto documentation on creating recipes: https://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#new-recipe-writing-a-new-recipe I usually start with using of the recipetool. I'm trying to generate core-image-sdk by adding EXTRA_IMAGE_FEATURES ?= "debug-tweaks tools-debug", but could find any .tar.bz2 file at tmp/deploy/images -- Maciej Pijanowski Embedded Firmware Team Leader GPG: 9963C36AAC3B2B46 https://3mdeb.com | @3mdeb_com
|
|
Maciej Pijanowski
On 04.12.2020 11:37,
anthony.marchand@... wrote:
Hello everyone,I suggest to start with recipetool rather than starting from scratch: https://www.yoctoproject.org/docs/latest/mega-manual/mega-manual.html#new-recipe-creating-the-base-recipe-using-recipetool For most python modules it should **just work**. Compare the output of recipetool with what you have done manually and start from there.
-- Maciej Pijanowski Embedded Firmware Team Leader GPG: 9963C36AAC3B2B46 https://3mdeb.com | @3mdeb_com
|
|
Yocto Application Development
#yocto
Vijay Rakesh Munganda
Hi All,
I'm new to Yocto, till now I was thinking I have to develop an application by writing a recipe as mentioned in the link https://medium.com/@lokeshsharma596/yocto-lab-02-creating-custom-layer-and-writing-recipe-for-hello-world-f4438311bbfc, now I found some sources developing an application using Eclipse IDE. Here I'm confused about which is the better way/correct way of developing my application. Kindly please suggest to me. I'm trying to generate core-image-sdk by adding EXTRA_IMAGE_FEATURES ?= "debug-tweaks tools-debug", but could find any .tar.bz2 file at tmp/deploy/images Best Regards, Vijay
|
|
anthony.marchand@...
Hello everyone,
I have to add a python module named "pydevd" in my personnal image machine. Pydevd is a python module that can be used for remote debbuging with the Ecipse IDE. So normally, I used to go to the site: http://layers.openembedded.org/layerindex/branch/zeus/recipes to see what are the recipes available for the yocto version I use (zeus version), and then, I add the name of the recipe to my image in: IMAGE_INSTALL += " \ recipe_1\ recipe_2\ ... " As the recipe for the python 3 module: "pydevd" does not exists in zeus branch, I decided to create one by observing their structures and how python recipes are made. So there is my recipe for the latest version of pydevd I got from python.org: ------------------------------------ pydevd_2.1.0.bb ------------------------------------------------------- SUMMARY = "Pydevd, a python module for eclipse remote debugging" HOMEPAGE = "https://pypi.org/project/pydevd" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=30b3836521b3d65bef598bbc358a3afa" SRC_URI = "https://files.pythonhosted.org/packages/51/8c/4ebdb28a4b2f8cedc17a2fc68c38c545b12c2a861ac2bbd3cd5fdb5971a7/pydevd-2.1.0.tar.gz" SRC_URI[md5sum] = "74f4336ce09c5fab228a8ff4285e519a" SRC_URI[sha256sum] = "9f76aa4f82e43faba7c243d4c9678eb93e96848ba1e5dba61054bec2794e994b" RDEPENDS_${PN}_class-target += "\ ${PYTHON_PN}-threading \ " inherit pypi setuptools3 ptest BBCLASSEXTEND = "native nativesdk" RDEPENDS_${PN}-ptest += " \ ${PYTHON_PN}-pytest \ " fakeroot do_install_test() { install -d ${D}${PTEST_PATH}/pydevd/tests cp -rf ${S}/pydevd/* ${D}/pydevd/ cp -f ${S}/README.rst ${D}${PTEST_PATH}/ } ------------------------------------------------------------------------------------------- So I'm sure about md5 checksum, Licence and SRC_URI, but from the line: "RDEPENDS_${PN}_class-target" to the end, I'm not sure about what I'm doing :-) After a test of compilation with the command "bitbake pydevd", bitbake seems to parse and extract the tar.gz package well, but I have an error at the end when it tried to do install. My goal is simply to extract the content of the pydevd.tar.gz and installed it on my target path: "/usr/lib/python3.7/site-packages" When I do that manually on my target machine (by extracting the tar.gz in "/usr/lib/python3.7/site-packages" ), it works fine and python can import the module pydevd. I would like to do the same thing with a yocto recipe, but i've never made any recipes, I just know the basic theory about it. Does someone know or have ideas about how can I do that? Maybe it's not as simple as that, but as I'm pretty new, I don't realize the level of difficulty it represents. Thanks for all and best reguards.
|
|
Re: Using OVERRIDES to set variables from outside the recipe file
Quentin Schulz
Hi Andrew,
On Thu, Dec 03, 2020 at 07:23:43PM -0800, Andrew Loader wrote: Thanks for your helpMACHINE is automatically added to MACHINEOVERRIDES which in turn is automatically added to OVERRIDES. Doc patches welcome if something would benefit more or clearer explanation :) Quentin
|
|
Re: Using OVERRIDES to set variables from outside the recipe file
Andrew Loader
Thanks for your help
In the example above which I only used to communicate the problem, without getting all complicated with details of my multiple projects, images and petalinux. The solution would be to set the following in the local.conf file or another conf file or even a append file OVERRIDES_append = ":os" It was a good tip to use "bitbake -e my-recipe | grep -e "^OVERRIDES="" to show the results of this settings There is another example using overrides for DEPENDS here https://docs.yoctoproject.org/dev-manual/dev-manual-common-tasks.html?highlight=depends_one Which does not explain were the "one" machine is added to the OVERRIDES variable but the actual overrides mechanism seems clearly explained in both of the example sections mentioned but where and how this is set could do with a better examples Thanks Andrew
|
|
[psplash][PATCH] Supress initial background clearing if using a full screen img
Marc
If a full screen image is used there is no need to clear the background
as it will just be drawn over again shortly. This provides a small performance speed up when using full screen images. Signed-off-by: Marc Reilly <marc@...> --- psplash.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/psplash.c b/psplash.c index 1a56629..ec2e419 100644 --- a/psplash.c +++ b/psplash.c @@ -292,9 +292,11 @@ main (int argc, char** argv) sd_notify(0, "READY=3D1"); #endif =20 +#if !PSPLASH_IMG_FULLSCREEN /* Clear the background with #ecece1 */ psplash_fb_draw_rect (fb, 0, 0, fb->width, fb->height, PSPLASH_BACKGROUND_COLOR); +#endif =20 /* Draw the Poky logo */ psplash_fb_draw_image (fb,=20 --=20 2.26.2
|
|
qtwebkit - riscv doubleconversion issue qt5.12 webkit version
sateesh m
ERROR: qtwebkit-5.15.0+gitAUTOINC+10cd6a106e-r0 do_compile: Execution of '/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/temp/run.do_compile.2404' failed with exit code 1: [0/1] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/cmake --regenerate-during-build -S/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git -B/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build Re-run cmake no build system arguments CMake Warning at Source/cmake/OptionsCommon.cmake:135 (message): GNU gold linker isn't available, using the default system linker. Call Stack (most recent call first): Source/cmake/WebKitCommon.cmake:50 (include) CMakeLists.txt:139 (include)
-- Disabling ENABLE_LEGACY_WEB_AUDIO since USE_GSTREAMER is disabled. -- Disabling ENABLE_MEDIA_SOURCE since USE_GSTREAMER is disabled. -- Disabling ENABLE_WEB_AUDIO since USE_GSTREAMER is disabled. -- Found ICU header files in /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include -- Found ICU libraries: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/libicuuc.so -- Could NOT find Dwz (missing: DWZ_EXECUTABLE) (Required is at least version "0.13") -- Qt OpenGL implementation: GLESv2 -- Qt OpenGL libraries: Qt5::Gui_GLESv2 -- Qt EGL libraries: Qt5::Gui_EGL -- Checking for module 'libwoff2dec' -- No package 'libwoff2dec' found -- Could NOT find WOFF2Dec: Found unsuitable version "", but required is at least "1.0.1" (found WOFF2DEC_INCLUDE_DIRS-NOTFOUND) -- WOFF2Dec not found, using the bundled library. -- The following OPTIONAL packages have been found:
* JPEG * WebP * Qt5OpenGL (required version >= 5.2.0) * PkgConfig
-- The following REQUIRED packages have been found:
* BISON (required version >= 2.1) * Gperf (required version >= 3.0.1) * Perl (required version >= 5.10.0) * PythonInterp (required version >= 2.7.0) * Ruby (required version >= 1.9) * Sqlite * Threads * PNG * ZLIB * ICU * LibXml2 (required version >= 2.8.0) * LibXslt (required version >= 1.1.7) * Qt5Core * Qt5Gui * Qt5Network * Qt5Widgets * Qt5Test * Qt5QuickTest * Qt5Positioning * Qt5Sensors * Qt5PrintSupport Required for ENABLE_PRINT_SUPPORT=ON * Qt5Qml (required version >= 5.15.0) * Qt5QmlModels (required version >= 5.15.0) * Qt5Quick * Qt5WebChannel * Qt5 (required version >= 5.2.0) * X11 * Qt5Multimedia (required version >= 5.2.0) * Qt5MultimediaWidgets (required version >= 5.2.0)
-- The following OPTIONAL packages have not been found:
* Dwz (required version >= 0.13) * WOFF2Dec (required version >= 1.0.1)
-- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/shell/PlatformQt.cmake -- All-in-One build is enabled. -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebCore/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit2/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/PlatformQt.cmake -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/TestWebKitAPI/PlatformQt.cmake -- Enabled features: -- ENABLE_ACCELERATED_2D_CANVAS ............ ON -- ENABLE_ALLINONE_BUILD ON -- ENABLE_API_TESTS ........................ ON -- ENABLE_CSS_GRID_LAYOUT ON -- ENABLE_DATABASE_PROCESS ................. ON -- ENABLE_DATALIST_ELEMENT ON -- ENABLE_DEVICE_ORIENTATION ............... ON -- ENABLE_DRAG_SUPPORT ON -- ENABLE_FULLSCREEN_API ................... ON -- ENABLE_GAMEPAD_DEPRECATED ON -- ENABLE_GEOLOCATION ...................... ON -- ENABLE_ICONDATABASE ON -- ENABLE_INDEXED_DATABASE ................. ON -- ENABLE_INSPECTOR_UI ON -- ENABLE_JIT .............................. ON -- ENABLE_LEGACY_WEB_AUDIO OFF -- ENABLE_LINK_PREFETCH .................... ON -- ENABLE_MEDIA_SOURCE OFF -- ENABLE_NETSCAPE_PLUGIN_API .............. ON -- ENABLE_OPENGL ON -- ENABLE_PRINT_SUPPORT .................... ON -- ENABLE_QT_GESTURE_EVENTS ON -- ENABLE_QT_WEBCHANNEL .................... ON -- ENABLE_SAMPLING_PROFILER ON -- ENABLE_SPELLCHECK ....................... ON -- ENABLE_TOUCH_EVENTS ON -- ENABLE_VIDEO ............................ ON -- ENABLE_WEBKIT2 ON -- ENABLE_WEB_AUDIO ........................ OFF -- ENABLE_X11_TARGET ON -- ENABLE_XSLT ............................. ON -- USE_GSTREAMER OFF -- USE_LIBHYPHEN ........................... OFF -- USE_LIBJPEG ON -- USE_MEDIA_FOUNDATION .................... OFF -- USE_QT_MULTIMEDIA ON -- USE_SYSTEM_MALLOC ....................... OFF -- USE_WOFF2 ON -- Configuring done -- Generating done -- Build files have been written to: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build [1/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FunctionDispatcher.cpp [2/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastBitVector.cpp [3/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FilePrintStream.cpp [4/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RandomNumber.cpp [5/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp FAILED: Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/double-conversion.h:31, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa.h:26, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.h:30, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:27: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/utils.h:62:2: error: #error Target architecture was not detected as supported by Double-Conversion. 62 | #error Target architecture was not detected as supported by Double-Conversion. | ^~~~~ In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:26: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | ^~~~~~~~~~~~~~~~~~~~ [6/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RunLoop.cpp [7/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/HashTable.cpp [8/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp:25: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | ^~~~~~~~~~~~~~~~~~~~ /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] 109 | #define reinterpret_cast_ptr reinterpret_cast /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | ^~~~~~~~~~~~~~~~~~~~ ninja: build stopped: subcommand failed. WARNING: exit code 1 from a shell command.
ERROR: Logfile of failure stored in: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/temp/log.do_compile.2404 Log data follows: | DEBUG: Executing shell function do_compile | NOTE: VERBOSE=1 cmake --build /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build --target all -- | [0/1] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/cmake --regenerate-during-build -S/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git -B/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build | Re-run cmake no build system arguments | CMake Warning at Source/cmake/OptionsCommon.cmake:135 (message): | GNU gold linker isn't available, using the default system linker. | Call Stack (most recent call first): | Source/cmake/WebKitCommon.cmake:50 (include) | CMakeLists.txt:139 (include) | | | -- Disabling ENABLE_LEGACY_WEB_AUDIO since USE_GSTREAMER is disabled. | -- Disabling ENABLE_MEDIA_SOURCE since USE_GSTREAMER is disabled. | -- Disabling ENABLE_WEB_AUDIO since USE_GSTREAMER is disabled. | -- Found ICU header files in /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include | -- Found ICU libraries: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/libicuuc.so | -- Could NOT find Dwz (missing: DWZ_EXECUTABLE) (Required is at least version "0.13") | -- Qt OpenGL implementation: GLESv2 | -- Qt OpenGL libraries: Qt5::Gui_GLESv2 | -- Qt EGL libraries: Qt5::Gui_EGL | -- Checking for module 'libwoff2dec' | -- No package 'libwoff2dec' found | -- Could NOT find WOFF2Dec: Found unsuitable version "", but required is at least "1.0.1" (found WOFF2DEC_INCLUDE_DIRS-NOTFOUND) | -- WOFF2Dec not found, using the bundled library. | -- The following OPTIONAL packages have been found: | | * JPEG | * WebP | * Qt5OpenGL (required version >= 5.2.0) | * PkgConfig | | -- The following REQUIRED packages have been found: | | * BISON (required version >= 2.1) | * Gperf (required version >= 3.0.1) | * Perl (required version >= 5.10.0) | * PythonInterp (required version >= 2.7.0) | * Ruby (required version >= 1.9) | * Sqlite | * Threads | * PNG | * ZLIB | * ICU | * LibXml2 (required version >= 2.8.0) | * LibXslt (required version >= 1.1.7) | * Qt5Core | * Qt5Gui | * Qt5Network | * Qt5Widgets | * Qt5Test | * Qt5QuickTest | * Qt5Positioning | * Qt5Sensors | * Qt5PrintSupport | Required for ENABLE_PRINT_SUPPORT=ON | * Qt5Qml (required version >= 5.15.0) | * Qt5QmlModels (required version >= 5.15.0) | * Qt5Quick | * Qt5WebChannel | * Qt5 (required version >= 5.2.0) | * X11 | * Qt5Multimedia (required version >= 5.2.0) | * Qt5MultimediaWidgets (required version >= 5.2.0) | | -- The following OPTIONAL packages have not been found: | | * Dwz (required version >= 0.13) | * WOFF2Dec (required version >= 1.0.1) | | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/shell/PlatformQt.cmake | -- All-in-One build is enabled. | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebCore/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit2/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/TestWebKitAPI/PlatformQt.cmake | -- Enabled features: | -- ENABLE_ACCELERATED_2D_CANVAS ............ ON | -- ENABLE_ALLINONE_BUILD ON | -- ENABLE_API_TESTS ........................ ON | -- ENABLE_CSS_GRID_LAYOUT ON | -- ENABLE_DATABASE_PROCESS ................. ON | -- ENABLE_DATALIST_ELEMENT ON | -- ENABLE_DEVICE_ORIENTATION ............... ON | -- ENABLE_DRAG_SUPPORT ON | -- ENABLE_FULLSCREEN_API ................... ON | -- ENABLE_GAMEPAD_DEPRECATED ON | -- ENABLE_GEOLOCATION ...................... ON | -- ENABLE_ICONDATABASE ON | -- ENABLE_INDEXED_DATABASE ................. ON | -- ENABLE_INSPECTOR_UI ON | -- ENABLE_JIT .............................. ON | -- ENABLE_LEGACY_WEB_AUDIO OFF | -- ENABLE_LINK_PREFETCH .................... ON | -- ENABLE_MEDIA_SOURCE OFF | -- ENABLE_NETSCAPE_PLUGIN_API .............. ON | -- ENABLE_OPENGL ON | -- ENABLE_PRINT_SUPPORT .................... ON | -- ENABLE_QT_GESTURE_EVENTS ON | -- ENABLE_QT_WEBCHANNEL .................... ON | -- ENABLE_SAMPLING_PROFILER ON | -- ENABLE_SPELLCHECK ....................... ON | -- ENABLE_TOUCH_EVENTS ON | -- ENABLE_VIDEO ............................ ON | -- ENABLE_WEBKIT2 ON | -- ENABLE_WEB_AUDIO ........................ OFF | -- ENABLE_X11_TARGET ON | -- ENABLE_XSLT ............................. ON | -- USE_GSTREAMER OFF | -- USE_LIBHYPHEN ........................... OFF | -- USE_LIBJPEG ON | -- USE_MEDIA_FOUNDATION .................... OFF | -- USE_QT_MULTIMEDIA ON | -- USE_SYSTEM_MALLOC ....................... OFF | -- USE_WOFF2 ON | -- Configuring done | -- Generating done | -- Build files have been written to: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build | [1/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FunctionDispatcher.cpp | [2/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastBitVector.cpp | [3/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FilePrintStream.cpp | [4/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RandomNumber.cpp | [5/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp | FAILED: Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/double-conversion.h:31, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.h:30, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:27: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/utils.h:62:2: error: #error Target architecture was not detected as supported by Double-Conversion. | 62 | #error Target architecture was not detected as supported by Double-Conversion. | | ^~~~~ | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:26: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | [6/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RunLoop.cpp | [7/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/HashTable.cpp | [8/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp:25: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | ninja: build stopped: subcommand failed. | WARNING: exit code 1 from a shell command. | ERROR: Execution of '/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/temp/run.do_compile.2404' failed with exit code 1: | [0/1] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/cmake --regenerate-during-build -S/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git -B/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build | Re-run cmake no build system arguments | CMake Warning at Source/cmake/OptionsCommon.cmake:135 (message): | GNU gold linker isn't available, using the default system linker. | Call Stack (most recent call first): | Source/cmake/WebKitCommon.cmake:50 (include) | CMakeLists.txt:139 (include) | | | -- Disabling ENABLE_LEGACY_WEB_AUDIO since USE_GSTREAMER is disabled. | -- Disabling ENABLE_MEDIA_SOURCE since USE_GSTREAMER is disabled. | -- Disabling ENABLE_WEB_AUDIO since USE_GSTREAMER is disabled. | -- Found ICU header files in /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include | -- Found ICU libraries: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/libicuuc.so | -- Could NOT find Dwz (missing: DWZ_EXECUTABLE) (Required is at least version "0.13") | -- Qt OpenGL implementation: GLESv2 | -- Qt OpenGL libraries: Qt5::Gui_GLESv2 | -- Qt EGL libraries: Qt5::Gui_EGL | -- Checking for module 'libwoff2dec' | -- No package 'libwoff2dec' found | -- Could NOT find WOFF2Dec: Found unsuitable version "", but required is at least "1.0.1" (found WOFF2DEC_INCLUDE_DIRS-NOTFOUND) | -- WOFF2Dec not found, using the bundled library. | -- The following OPTIONAL packages have been found: | | * JPEG | * WebP | * Qt5OpenGL (required version >= 5.2.0) | * PkgConfig | | -- The following REQUIRED packages have been found: | | * BISON (required version >= 2.1) | * Gperf (required version >= 3.0.1) | * Perl (required version >= 5.10.0) | * PythonInterp (required version >= 2.7.0) | * Ruby (required version >= 1.9) | * Sqlite | * Threads | * PNG | * ZLIB | * ICU | * LibXml2 (required version >= 2.8.0) | * LibXslt (required version >= 1.1.7) | * Qt5Core | * Qt5Gui | * Qt5Network | * Qt5Widgets | * Qt5Test | * Qt5QuickTest | * Qt5Positioning | * Qt5Sensors | * Qt5PrintSupport | Required for ENABLE_PRINT_SUPPORT=ON | * Qt5Qml (required version >= 5.15.0) | * Qt5QmlModels (required version >= 5.15.0) | * Qt5Quick | * Qt5WebChannel | * Qt5 (required version >= 5.2.0) | * X11 | * Qt5Multimedia (required version >= 5.2.0) | * Qt5MultimediaWidgets (required version >= 5.2.0) | | -- The following OPTIONAL packages have not been found: | | * Dwz (required version >= 0.13) | * WOFF2Dec (required version >= 1.0.1) | | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/JavaScriptCore/shell/PlatformQt.cmake | -- All-in-One build is enabled. | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebCore/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit2/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WebKit/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/PlatformQt.cmake | -- Using platform-specific CMakeLists: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Tools/TestWebKitAPI/PlatformQt.cmake | -- Enabled features: | -- ENABLE_ACCELERATED_2D_CANVAS ............ ON | -- ENABLE_ALLINONE_BUILD ON | -- ENABLE_API_TESTS ........................ ON | -- ENABLE_CSS_GRID_LAYOUT ON | -- ENABLE_DATABASE_PROCESS ................. ON | -- ENABLE_DATALIST_ELEMENT ON | -- ENABLE_DEVICE_ORIENTATION ............... ON | -- ENABLE_DRAG_SUPPORT ON | -- ENABLE_FULLSCREEN_API ................... ON | -- ENABLE_GAMEPAD_DEPRECATED ON | -- ENABLE_GEOLOCATION ...................... ON | -- ENABLE_ICONDATABASE ON | -- ENABLE_INDEXED_DATABASE ................. ON | -- ENABLE_INSPECTOR_UI ON | -- ENABLE_JIT .............................. ON | -- ENABLE_LEGACY_WEB_AUDIO OFF | -- ENABLE_LINK_PREFETCH .................... ON | -- ENABLE_MEDIA_SOURCE OFF | -- ENABLE_NETSCAPE_PLUGIN_API .............. ON | -- ENABLE_OPENGL ON | -- ENABLE_PRINT_SUPPORT .................... ON | -- ENABLE_QT_GESTURE_EVENTS ON | -- ENABLE_QT_WEBCHANNEL .................... ON | -- ENABLE_SAMPLING_PROFILER ON | -- ENABLE_SPELLCHECK ....................... ON | -- ENABLE_TOUCH_EVENTS ON | -- ENABLE_VIDEO ............................ ON | -- ENABLE_WEBKIT2 ON | -- ENABLE_WEB_AUDIO ........................ OFF | -- ENABLE_X11_TARGET ON | -- ENABLE_XSLT ............................. ON | -- USE_GSTREAMER OFF | -- USE_LIBHYPHEN ........................... OFF | -- USE_LIBJPEG ON | -- USE_MEDIA_FOUNDATION .................... OFF | -- USE_QT_MULTIMEDIA ON | -- USE_SYSTEM_MALLOC ....................... OFF | -- USE_WOFF2 ON | -- Configuring done | -- Generating done | -- Build files have been written to: /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/build | [1/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FunctionDispatcher.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FunctionDispatcher.cpp | [2/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FastBitVector.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastBitVector.cpp | [3/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/FilePrintStream.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FilePrintStream.cpp | [4/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RandomNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RandomNumber.cpp | [5/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp | FAILED: Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/DecimalNumber.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/double-conversion.h:31, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.h:30, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:27: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa/utils.h:62:2: error: #error Target architecture was not detected as supported by Double-Conversion. | 62 | #error Target architecture was not detected as supported by Double-Conversion. | | ^~~~~ | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/DecimalNumber.cpp:26: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | [6/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/RunLoop.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/RunLoop.cpp | [7/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/HashTable.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/HashTable.cpp | [8/4410] /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++ -DBUILDING_QT__=1 -DBUILDING_WITH_CMAKE=1 -DBUILDING_WTF -DHAVE_CONFIG_H=1 -DQT_ASCII_CAST_WARNINGS -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG -DQT_NO_DYNAMIC_CAST -DQT_NO_EXCEPTIONS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_USE_QSTRINGBUILDER -ISource/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/bmalloc -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/dtoa -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/threads -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/unicode -I/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/ThirdParty -I. -IDerivedSources -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/include/QtCore -isystem /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot/usr/lib/mkspecs/linux-oe-g++ -fvisibility=hidden -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0=/usr/src/debug/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0 -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot= -fdebug-prefix-map=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot-native= -fvisibility-inlines-hidden --sysroot=/home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/recipe-sysroot -fpermissive -fno-exceptions -fno-strict-aliasing -fno-rtti -std=c++11 -Wno-expansion-to-defined -Wall -Wextra -Wcast-align -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wundef -Wwrite-strings -fPIC -fPIC -MD -MT Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -MF Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o.d -o Source/WTF/wtf/CMakeFiles/WTF.dir/GregorianDateTime.cpp.o -c /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp | In file included from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/FastMalloc.h:26, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/config.h:51, | from /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/GregorianDateTime.cpp:25: | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:211:39: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:763:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::SymbolRegistry* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::SymbolRegistry*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:769:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::SymbolRegistry**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = char16_t]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:794:47: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'const char16_t*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'const T* WTF::StringImpl::tailPointer() const [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:830:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const uint8_t*' {aka 'const unsigned char*'} to 'WTF::StringImpl* const*' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:817:16: note: in expansion of macro 'reinterpret_cast_ptr' | 817 | return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h: In instantiation of 'T* WTF::StringImpl::tailPointer() [with T = WTF::StringImpl*]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:837:42: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'uint8_t*' {aka 'unsigned char*'} to 'WTF::StringImpl**' increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/StringImpl.h:823:16: note: in expansion of macro 'reinterpret_cast_ptr' | 823 | return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>()); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = unsigned char; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:629:69: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const unsigned char*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h: In instantiation of 'bool WTF::charactersAreAllASCII(const CharacterType*, size_t) [with CharacterType = char16_t; size_t = long unsigned int]': | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/WTFString.h:631:66: required from here | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/StdLibExtras.h:109:30: warning: cast from 'const char16_t*' to 'const MachineWord*' {aka 'const long unsigned int*'} increases required alignment of target type [-Wcast-align] | 109 | #define reinterpret_cast_ptr reinterpret_cast | /home/sateesh/qtimage/openembedded-core/riscv-build/tmp-glibc/work/riscv64-oe-linux/qtwebkit/5.15.0+gitAUTOINC+10cd6a106e-r0/git/Source/WTF/wtf/text/ASCIIFastPath.h:96:26: note: in expansion of macro 'reinterpret_cast_ptr' | 96 | allCharBits |= *(reinterpret_cast_ptr<const MachineWord*>(characters)); | | ^~~~~~~~~~~~~~~~~~~~ | ninja: build stopped: subcommand failed. | WARNING: exit code 1 from a shell command. | ERROR: Task (/home/sateesh/qtimage/openembedded-core/meta-qt5/recipes-qt/qt5/qtwebkit_git.bb:do_compile) failed with exit code '1' NOTE: Tasks Summary: Attempted 2916 tasks of which 2915 didn't need to be rerun and 1 failed.
Summary: 1 task failed: /home/sateesh/qtimage/openembedded-core/meta-qt5/recipes-qt/qt5/qtwebkit_git.bb:do_compile Summary: There was 1 ERROR message shown, returning a non-zero exit code.
|
|
Re: ninja: error: unknown target 'install'
#yocto
#toolchain
#linux
Vijay Rakesh Munganda
Hi Quentin, Thanks for the reply. I had recently started learning, can you please explain me little more in detail. How to add target named? And How to override do_install? I searched online, but couldn’t find exact information. Adding OVERRIDES = “do_install” is this correct? Thanks,
|
|
Re: ninja: error: unknown target 'install'
#yocto
#toolchain
#linux
Quentin Schulz
Hi,
On Thu, Dec 03, 2020 at 04:04:25AM -0800, vijayrakeshmunganda@... wrote: Hi All,No target named install. Add one or override do_install task since by default it "calls" the install target. [...] SRC_URI = "git://github.com/aws/aws-iot-device-sdk-embedded-C;branch=${BRANCH};name=aws-iot-device-sdk-embedded-C"IIRC, gitsm in SRC_URI instead of git should handle that: https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-fetching.html#git-submodule-fetcher-gitsm Quentin
|
|
ninja: error: unknown target 'install'
#yocto
#toolchain
#linux
Vijay Rakesh Munganda
Hi All,
I had written a bitbake file to download and install AWS SDK C from GitHub https://github.com/aws/aws-iot-device-sdk-embedded-C based on existing recipes https://github.com/aws/meta-aws, but I'm getting an error as "ninja: error: unknown target 'install'". Kindly please help me to solve the issue. Log data follows:
| DEBUG: Executing python function extend_recipe_sysroot
| NOTE: Direct dependencies are ['virtual:native:/home/bl-docker/rity/src/poky/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', 'virtual:native:/home/bl-docker/rity/src/poky/meta/recipes-devtools/ninja/ninja_1.10.0.bb:do_populate_sysroot', 'virtual:native:/home/bl-docker/rity/src/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-devtools/gcc/gcc-cross_9.3.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-devtools/cmake/cmake-native_3.16.5.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-connectivity/openssl/openssl_1.1.1g.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/../meta-mediatek-bsp/recipes-connectivity/mosquitto/mosquitto_1.6.12.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-core/glibc/glibc_2.31.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb:do_populate_sysroot', '/home/bl-docker/rity/src/poky/meta/recipes-devtools/gcc/gcc-runtime_9.3.bb:do_populate_sysroot']
| NOTE: Installed into sysroot: []
| DEBUG: Python function extend_recipe_sysroot finished
| DEBUG: Executing shell function do_install
| NOTE: DESTDIR=/home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/image VERBOSE=1 cmake --build /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/build --target install --
| [0/2] /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/recipe-sysroot-native/usr/bin/cmake -P /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/build/CMakeFiles/VerifyGlobs.cmake
| ninja: error: unknown target 'install'
| WARNING: /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/temp/run.do_install.17379:1 exit 1 from 'eval ${DESTDIR:+DESTDIR=${DESTDIR} }VERBOSE=1 cmake --build '/home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/build' "$@" -- ${EXTRA_OECMAKE_BUILD}'
| ERROR: Execution of '/home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/temp/run.do_install.17379' failed with exit code 1:
| [0/2] /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/recipe-sysroot-native/usr/bin/cmake -P /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/build/CMakeFiles/VerifyGlobs.cmake
| ninja: error: unknown target 'install'
| WARNING: /home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/temp/run.do_install.17379:1 exit 1 from 'eval ${DESTDIR:+DESTDIR=${DESTDIR} }VERBOSE=1 cmake --build '/home/bl-docker/rity/bsp/tmp/work/aarch64-poky-linux/aws/1.0-r0/build' "$@" -- ${EXTRA_OECMAKE_BUILD}'
|
ERROR: Task (/home/bl-docker/rity/src/meta-application/recipes-aws/aws/aws_1.0.bb:do_install) failed with exit code '1' Recipe File: SUMMARY = "AWS IoT Device SDK for Embedded C"
DESCRIPTION = "The AWS IoT Device SDK for C provides MQTT APIs for Embedded C applications"
HOMEPAGE = "https://github.com/aws/aws-iot-device-sdk-embedded-C"
LICENSE = "Apache-2.0"
inherit cmake
LIC_FILES_CHKSUM = "file://LICENSE;md5=c8c19afab7f99fb196c9287cbd60a258"
BRANCH ?= "main"
SRC_URI = "git://github.com/aws/aws-iot-device-sdk-embedded-C;branch=${BRANCH};name=aws-iot-device-sdk-embedded-C"
SRCREV = "${AUTOREV}"
S= "${WORKDIR}/git"
do_configure_prepend() {
cd ${S}
git submodule update --init --recursive
}
DEPENDS = "openssl mosquitto"
CFLAGS_append = " -Wl,-Bsymbolic"
EXTRA_OECMAKE += "-DBUILD_DEPS=ON"
EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=1"
EXTRA_OECMAKE += "-DCMAKE_BUILD_TYPE=Release"
EXTRA_OECMAKE += "-DCMAKE_INSTALL_PREFIX=$D/usr"
OECMAKE_BUILDPATH += "${WORKDIR}/build"
OECMAKE_SOURCEPATH += "${S}"
FILES_${PN} += "${libdir}/*1.0.0"
FILES_${PN} += "${libdir}/libbackoff_algorithm.so"
FILES_${PN} += "${libdir}/libcore_http_client.so"
FILES_${PN} += "${libdir}/libcore_json.so"
FILES_${PN} += "${libdir}/libcore_mqtt.so"
FILES_${PN} += "${libdir}/libcore_mqtt_serializer.so"
FILES_${PN} += "${libdir}/libcore_mqtt_state.so"
FILES_${PN} += "${libdir}/libcore_pkcs11.so"
FILES_${PN} += "${libdir}/libcore_pki_utils.so"
FILES_${PN} += "${libdir}/libcore_pkcs11_pal.so"
PACKAGES = "${PN}"
INSANE_SKIP_${PN} += "installed-vs-shipped"
BBCLASSEXTEND = "native nativesdk"
Thanks & Regards, Vijay Rakesh
|
|
Re: Using OVERRIDES to set variables from outside the recipe file
Robert P. J. Day
On Thu, 3 Dec 2020, Quentin Schulz wrote:
Hi Andrew,i'm going to weigh in on this, as it *seems* that andrew has the same misunderstanding i had when, lo those many years ago, i read that section in the BB manual, and read this: OVERRIDES = "architecture:os:machine" TEST = "default" TEST_os = "osspecific" TEST_nooverride = "othercondvalue" my initial problem with that section was that it wasn't clear that entities like "architecture" and "os" and so on were *replaceable*, in that one was supposed to put *examples* of those values in those places. (laugh if you like, but if one is totally new to overrides, that section can be misinterpreted in a truly tragic way on first reading.) i recall extending that section to attempt to make it more understandable, but i think, over the holidays, i'm going to rewrite it again with a simpler introduction and more examples straight from the code base. (i believe i was the one who added the example involving overriding the value of KBRANCH based on the target arch.) in any event, i can easily see a much longer and involved introduction to overrides. rday
|
|
Re: Using OVERRIDES to set variables from outside the recipe file
Quentin Schulz
Hi Andrew,
On Thu, Dec 03, 2020 at 03:45:41AM +0000, Andrew Loader wrote: In the bitbake user manual it has an example of how to set the variable value using the OVERRIDE variableOVERRIDES is set in configuration files usually (always?). It can be either in a distro if you use DISTROOVERRIDES, in a machine if you use MACHINEOVERRIDES, and you might be able to add manually to it from local.conf or other ways but I think you should go with DISTROOVERRIDES or MACHINEOVERRIDES. Then, the OVERRIDES (which contains MACHINEOVERRIDES:DISTROOVERRIDES among other things) will be used in all recipes you can find and it should just work. You can use bitbake -e my-recipe | grep -e "^OVERRIDES=" to check the content of the OVERRIDES variable. Note that righmost "OVERRIDE" is the one which takes precedence over all others. Quentin
|
|
Vijay Rakesh Munganda
Hi All,
Can anyone please help me this issue. Thanks & Regards, VR
|
|
Vijay Rakesh Munganda
Hi, do_install failed with an error "ninja: error: unknown target 'install'". Kindly please help me to fix the above issue.
Thanks & Regards,
|
|
Using OVERRIDES to set variables from outside the recipe file
Andrew Loader
In the bitbake user manual it has an example of how to set the variable value using the OVERRIDE variable
OVERRIDES = "architecture:os:machine" TEST = "default" TEST_os = "osspecific" TEST_nooverride = "othercondvalue"
Lets say this is in the recipe called “test_0.1.bb” and we remove the OVERRIDES line from it
If we want to the OVERRIDES value to configure the recipe externally say in local.conf as I do not want to change the recipe how would I do that?
Setting the OVERRIDES inside the same recipe seems limited it seems to give me just an easy way of having all the options and selecting one. I could use an append file to set it but I am sure it can be used in a better way. I see in the Conditional Metadata section of the user manual there is another example using KBANCH with different architures being set but it does not explain how or were the OVERRIDES value is set. Can some one explain how this works?
I have tried adding OVERRIDES_pn-test = “os” in the local.conf file but this results in a mess or errors
Thanks Andrew
|
|
[ANNOUNCEMENT] Yocto Project 3.1.4 (Dunfell 23.0.4) is Released
Vineela
Hello,
We are pleased to announce the Yocto Project 3.1.4 (dunfell-23.0.4) Release is now available for download. http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/poky-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/poky-dunfell-23.0.4.tar.bz2 A gpg signed version of these release notes is available at: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/RELEASENOTES Full Test Report: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/testreport.txt Thank you for everyone's contributions to this release. Vineela Tummalapalli Yocto Project Build and Release vineela.tummalapalli@... ------------------------------------ yocto-3.1.4 Release Notes ------------------------------------ ----------------------------------- Repositories/Downloads ---------------------------------- Repository Name: poky Repository Location: https://git.yoctoproject.org/git/poky Branch: dunfell Tag: yocto-3.1.4 Git Revision: 424296bf9bb4bae27febf91bce0118df09ce5fa1 Release Artefact: poky-dunfell-23.0.4 sha: 3ba8101219ed2dbc463d09e93adec3e66d0aef5e5748a344bd17dfe308bb87d5 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/poky-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/poky-dunfell-23.0.4.tar.bz2 Repository Name: openembedded-core Repository Location: https://git.openembedded.org/openembedded-core Branch: dunfell Tag: 2020-04.4-dunfell Git Revision: b885888df67eb5cdb3b82f4f0a07369a449e223b Release Artefact: oecore-dunfell-23.0.4 sha: 9be34a08319edf3f4d1ab79205f59359fb512ba75b1b79af55baf3bf7b0c51a5 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/oecore-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/oecore-dunfell-23.0.4.tar.bz2 Repository Name: meta-mingw Repository Location: https://git.yoctoproject.org/git/meta-mingw Branch: dunfell Tag: yocto-3.1.4 Git Revision: 524de686205b5d6736661d4532f5f98fee8589b7 Release Artefact: meta-mingw-dunfell-23.0.4 sha: a608e48b80bc34393f6d156e89d555be3680e9621a6b7413c3580c797e80f712 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/meta-mingw-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/meta-mingw-dunfell-23.0.4.tar.bz2 Repository Name: meta-gplv2 Repository Location: https://git.yoctoproject.org/git/meta-gplv2 Branch: dunfell Tag: yocto-3.1.4 Git Revision: 60b251c25ba87e946a0ca4cdc8d17b1cb09292ac Release Artefact: meta-gplv2-dunfell-23.0.4 sha: 64a75eef7ca5f6b7442eb85c36c3b78751e9d82b1e6c0a584cc6c8e0722d0ac5 Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/meta-gplv2-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/meta-gplv2-dunfell-23.0.4.tar.bz2 Repository Name: bitbake Repository Location: https://git.openembedded.org/bitbake Branch: dunfell Tag: 2020-04.4-dunfell Git Revision: 89fc9450abefd682266efcbfa031d1ef115ff1a7 Release Artefact: bitbake-dunfell-23.0.4 sha: 97954492344f8706c0fb03f850868e6c262794f92d940d9f326f730e9a4a7f6a Download Locations: http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.4/bitbake-dunfell-23.0.4.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.4/bitbake-dunfell-23.0.4.tar.bz2 Repository Name: yocto-docs Repository Location: https://git.yoctoproject.org/git/yocto-docs Branch: dunfell Tag: yocto-3.1.4 Git Revision: 8910ac1c7425bf6f3e1309571c620960d4456033 ------------- Contributors ------------- Thanks to the following people who contributed to this release. akash hadke Alexander Kanavin Andrey Zhizhikin Anibal Limon Armin Kuster Bruce Ashfield Changqing Li Charlie Davies Chee Yang Lee Chris Laplante Christian Eggers De Huo Denys Zagorui Diego Santa Cruz Gratian Crisan Jacob Kroon Jose Quaresma Joshua Watt Khem Raj Konrad Weihmann Lee Chee Yang Marek Vasut Mark Jonas Martin Jansa Maxime Roussin-Bélanger Max Krummenacher Michael halstead Michael Gloff Mingli Yu Naoki Hayama Nathan Rossi Neil Armstrong Norman Stetter Otavio Salvador Randy MacLeod Ricardo Salveti Richard Leitner Richard Purdie Ross Burton Sangeeta Jain Stephen Jolley Steve Sakoman Tim Orling Victor Kamensky Vineela Tummalapalli Yann E. MORIN Yi Zhao Yoann Congal Yongxin Liu --------------- Known Issues --------------- *oe-core "bitbake devshell" test failure: The issue has been debugged and identified that while using devtools, autotools based projects should pass CONFIGUREOPTS to configure invocation. *On Ubuntu 20.04 distro, there is oe-core failure in launching dependency explorer: Fix is available in master and is now backported to dunfell. --------------- Security Fixes --------------- qemu: fix CVE-2020-24352 python3: fix CVE-2020-27619 python3: whitelist CVE-2020-15523 bison: update to 3.5.4 for CVE-2020-14150 libproxy: fix CVE-2020-26154 freetype: fix CVE-2020-15999, backport from 2.10.4 openssh: whitelist CVE-2014-9278 grub: clean up CVE patches grub: fix several CVEs in grub 2.04 ruby: fix CVE-2020-25613 sqlite3: fix CVE-2020-13632 sqlite3: fix CVE-2020-13631 sqlite3: fix CVE-2020-13630 sqlite3: fix CVE-2020-13435 sqlite3: fix CVE-2020-13434 bluez5: update to 5.55 to fix CVE-2020-27153 jquery: Upgrade 3.4.1 -> 3.5.0 to fix CVE-2020-11022 and CVE-2020-11023 nasm: update 2.14.02 -> 2.15.03 for CVE fixes qemu: fix CVE-2019-20175 ffmpeg: fix CVE-2020-12284 grub2: fix CVE-2020-10713 python3: fix CVE-2020-26116 libproxy: fix CVE-2020-25219 bash: fix CVE-2019-18276 libx11: fix CVE-2020-14363 xserver-xorg: fix CVE-2020-14346/14361/14362 qemu : fix CVE-2020-16092 --------------- Fixes --------------- build-appliance-image: Update to dunfell head revision python3: add ldconfig rdepends for python3-ctypes glib-2.0: correct build with latest meson ptest-runner: Backport patch to fix inappropriate ioctl error ptest-runner: fix upstream version check ptest-runner: Bump to 2.4.0 lib/oe/reproducible.py: Fix git HEAD check lib/oe/reproducible: Fix error when no git HEAD classes/reproducible: Move to library code libbsd: Remove BSD-4-Clause from main package poky.conf: Bump version for 3.1.4 release binutils: reproducibility: reuse debug-prefix-map for stabs testimage: print results for interrupted runs oeqa/core/context: initialize _run_end_time oeqa/core/context: expose results as variable systemd: udev SECLABEL{selinux} crash fix gstreamer1.0: warn the user when something is wrong with GstBufferPool clutter-gst-3.0: do not call out to host gstreamer plugin scanner diffstat: add nativesdk to BBCLASSEXTEND syslinux: add link to upstream discussion in patch kernel-module-split.bbclass: identify kernel modconf files as configuration files alsa-utils: Fix license to GPLv2 only libdnf: Fix license as it contains 'or later' clause ptest-runner: Fix license as it contains 'or later' clause dosfstools: add mkfs.vfat to ALTERNATIVE Documenation: Prepared for the 3.1.4 release netbase: bump PE to purge bogus hash equivalence from autobuilder netbase: update SRC_URI to reflect new file name linux-firmware: upgrade 20200817 -> 20201022 linux-firmware: package nvidia firmware linux-firmware: package marvel sdio 8997 firmware linux-firmware: add Amlogic VDEC firmware package update_udev_hwdb: clean hwdb.bin qemuboot.bbclass: Fix a typo meta: fix some unresponsive homepages and bugtracker links libsdl2: Fix directfb SDL_RenderFillRect libsdl2: Fix directfb syntax error Map license names PSF and PSFv2 to PSF-2.0 Add license text for PSF-2.0 insane: add GitLab /archive/ tests recipes-core/busybox: fixup licensing information common-licenses: add bzip2-1.0.4 timezone: upgrade to 2020d sstatesig: Log timestamps for hashequiv in reprodubile builds for do_package Revert "lib/oe/patch: fix handling of patches with no header" lib/oe/patch: GitApplyTree: save 1 echo in commit-msg hook lib/oe/patch: prevent applying patches without any subject xcb-proto: backport fix for python gcd function glib-2.0: fix parsing of slim encoded tzdata gst-validate: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-python: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-omx: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-rtsp-server: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-vaapi: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-libav: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-plugins-ugly: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-plugins-bad: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-plugins-good: Update 1.16.2 -> Update 1.16.3 gstreamer1.0-plugins-base: Update 1.16.2 -> Update 1.16.3 gstreamer1.0: Update 1.16.2 -> Update 1.16.3 gstreamer1.0: Fix reproducibility issue around libcap gcc: mitigate the Straight-line Speculation attack oeqa: Add sync call to command execution qemu: change TLBs number to 64 in 34Kf mips cpu model packagegroup-core-tools-debug: Disable for rv32/glibc as well selftest/virgl: drop the custom 30 sec timeout siteinfo: Recognize bigendian sh3be and sh4be siteinfo: Recognize 32bit PPC LE toolchain-shar-extract.sh: don't print useless info tune-riscv.inc: use nf suffix also for TUNE_PKGARCH tune-ep9312.inc: add t suffix for thumb to PACKAGE_EXTRA_ARCHS_tune-ep9312 tune-mips64r6.inc: fix typo in mipsisa64r6-nf arch-mips.inc: remove duplicated mips64el-o32 from PACKAGE_EXTRA_ARCHS_tune-mips64el-o32 arch-armv7a.inc: fix typo bitbake: tests/fetch: Update upstream master->main branchname transition uninative: Fix typo in error message bitbake-bblayers/create: Make the example recipe print its message oe-build-perf-report: Ensure correct data is shown for multiple branch options scripts/oe-build-perf-report: Allow operation with no buildstats timezone: update to 2020b linux-yocto/5.4: update to v5.4.69 linux-yocto/5.4: update to v5.4.68 linux-yocto/5.4: update to v5.4.67 linux-yocto/5.4: fix kprobes build warning classes/sanity: Bump minimum python version to 3.5 libtools-cross/shadow-sysroot: Use nopackages inherit glibc: do_stash_locale must not delete files from ${D} stress-ng: Upgrade 0.11.01 -> 0.11.17 lttng-ust: update to 2.11.1 lttng-tools: update to 2.11.5 lttng-modules: update to 2.11.6 Revert "lttng-modules: backport writeback.h changes from 2.12.x to fix kernel 5.4.62+" bitbake: bitbake: tests/fetch: add unit tests for SRC_URI with spaces in url bitbake: bitbake: fetch/git: add support for SRC_URI containing spaces in url bitbake: bitbake-user-manual: Add BBFILES_DYNAMIC perl: fix ptest test count oeqa/selftest/cases/devtool.py: avoid .pyc race wic: Add 512 Byte alignment to --offset wic: Fix error message when reporting invalid offset wic: Fix --extra-space argument handling wic: Add --offset argument for partitions lttng-modules: backport writeback.h changes from 2.12.x to fix kernel 5.4.62+ linux-yocto/5.4: update to v5.4.65 linux-yocto/5.4: update to v5.4.64 linux-yocto/config: netfilter: Enable nat for ipv4 and ipv6 kernel-yocto: add KBUILD_DEFCONFIG search location to failure message sstate.bbclass: Check file ownership before doing 'touch -a' openssh: Allow enable/disable of rng-tools recommendation on sshd sysvinit rc: Use PSPLASH_FIFO_DIR for progress fifo packagegroup: rrecommend perf also for musl on ARM ssh-pregen-hostkeys: Add a recipe with pregenerated ssh host keys oeqa/selftest/containerimage: Update to match assumptions in configuration oeqa/selftest/incompatible_lib: Fix append usage oeqa/qemurunner: Increase serial timeout buildtools-tarball: Fix conflicts with oe-selftest and other tooling buildtools: Handle generic environment setup injection meta: add/fix invalid Upstream-Status tags curl: Change SRC_URI from http to https packagegroups: remove strace and lttng-tools for rv32/musl testexport: rename create_tarball method dropbear/openssh: Lower priority of key generation xinput-calibrator: change SRC_URI to branch with libinput support insane: check for missing update-alternatives inherit insane: Check for feature check variables not being used sato-screenshot: improve .la removal alsa-plugins: improve .la removal cve-update-db-native: remove unused variable cve-update-db-native: move -journal checking into do_fetch cve-update-db-native: be less magical about checking whether the cve-check class is enabled bash : inlcude patch 17 & 18 site: Make sys_siglist default to no buildtools-tarball: Add python3-jinja2 python3-jinja2: Import from meta-oe/meta-python python3-markupsafe: Import from meta-oe/meta-python
|
|