You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running make in parallell (e.g. with -j 9) results in errors when compiling with 'WD_ENABLE_WEB_VIEW': '1':
g++: error: ./Default/obj.target/test_WD_hybrid/geni/moc_WindowWithEmbeddedViewTest.o: No such file or directory
g++: error: ./Default/obj.target/test_WD_hybrid/geni/moc_WidgetAndWebViewTest.o: No such file or directory
g++: error: ./Default/obj.target/test_WD_hybrid/geni/moc_GraphicsWebViewTest.o: No such file or directory
test_WD_hybrid.target.mk:177: recipe for target 'Default/WebDriver' failed
make: *** [Default/WebDriver] Error 1
These go away if you set -j 1. Presumably there's a missing dependency somewhere, I'd try to fix it myself but I don't really understand the build system.
The text was updated successfully, but these errors were encountered:
Not sure it is a missing deps. Looks more like some issue with qt's moc when used in parallel.
Observations when following these steps:
modify build.sh to do make -j 12, then
$ rm -rf ./out && ./build.sh
ar: Default/obj.target/WebDriver_extension_qt_base/geni/moc_q_view_runner.o: No such file or directory
ar: Default/obj.target/WebDriver_extension_qt_quick/geni/moc_qml_objname_util.o: No such file or directory
Rebuild, without changing anything
$ make -j 12 -C out/desktop/release/
LINK(target) Default/WebDriver
LINK(target) Default/WebDriver_noWebkit: Finished
g++: error: ./Default/obj.target/test_WD_hybrid/geni/moc_WindowWithEmbeddedViewTest.o: No such file or directory
Again rebuild, without changing anything, this time it works
Running make in parallell (e.g. with
-j 9
) results in errors when compiling with'WD_ENABLE_WEB_VIEW': '1'
:These go away if you set
-j 1
. Presumably there's a missing dependency somewhere, I'd try to fix it myself but I don't really understand the build system.The text was updated successfully, but these errors were encountered: