perl5 do_install() fails (libperl.so: No such file or directory)
#dunfell
Frank
Hi,
I've got a weird problem when trying to build perl5 (from perl_5.30.1.bb, "dunfell" branch): the do_install() fails : rm: cannot remove '/home/frwol/Sources/yocto/build/tmp/work/core2-64-poky-linux/perl/5.30.1-r0/image//usr/lib/perl5/5.30.1/*/CORE/libperl.so': No such file or directory' The thing is, there IS a 'libperl.so', which is a symlink, in a "x86_64-linux" subfolder :
And if I try to manually delete it using the same command it works :
So... I'm kind of confused to tell the truth. My guess is it's related to my setup (or PEBCAK) or else everybody would have encountered this.
I've made absolutely no modification whatsoever. I've just cloned the "dunfell" branch from poky and launched a "bitbake perl". Thanks in advance for your help. Regards, Frank.
|
|
Re: Yocto Application Development
#yocto
Vijay Rakesh Munganda
Hi Maciej Pijanowski, Best regards,
|
|
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,
|
|