Discussion:
QtWebKit compilation error
Krenar Qehaja
2011-12-10 01:15:42 UTC
Permalink
Hi everyone,

I just made a clone of Qt5 and QtWebKit is failing to compile.

This is the output:
Project MESSAGE: Using gold linker
In file included from
../../../Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp:38:0:
../../../Source/WebCore/platform/ContextMenuItem.h:47:19: fatal error:
QAction: No such file or directory
compilation terminated.

Went ahead and added -Iqtbase/include/QtWidgets (where QAction resides) to
Makefile.qtwebkit but with no luck.

Is this a known issue or is it just me?

Thank you.

Regards,
Krenar
Donald Carr
2011-12-10 05:55:44 UTC
Permalink
I have successfully built Qt webkit against qt 5 within the last 2 days.

qtbase HEAD
qtdeclarative HEAD
qtscript HEAD

qt webkit master cloned from:

git://gitorious.org/webkit/webkit.git

I followed this:

http://trac.webkit.org/wiki/BuildingQt5OnHarmattan

in so much as I used the following built_webkit line:

perl Tools/Scripts/build-webkit --qt --release --no-3d-canvas

then

import QtWebKit 3.0
import QtQuick 2.0

WebView {
Component.onCompleted:
load("http://www.google.com")
}

there was a GLES2 bug present until they squashed it 2 days ago :)

Bon appetite,
Donald
Post by Krenar Qehaja
Hi everyone,
I just made a clone of Qt5 and QtWebKit is failing to compile.
Project MESSAGE: Using gold linker
In file included from
QAction: No such file or directory
compilation terminated.
Went ahead and added -Iqtbase/include/QtWidgets (where QAction resides) to
Makefile.qtwebkit but with no luck.
Is this a known issue or is it just me?
Thank you.
Regards,
Krenar
_______________________________________________
Qt5-feedback mailing list
http://lists.qt.nokia.com/mailman/listinfo/qt5-feedback
--
-------------------------------
 °v°  Donald Carr
/(_)\  Professional Penguin lover
 ^ ^

Cave canem, te necet lingendo
Surik Sayadyan
2011-12-10 08:27:44 UTC
Permalink
Try to do "make install" instead "make". This helped me with the same error.
Post by Krenar Qehaja
Hi everyone,
I just made a clone of Qt5 and QtWebKit is failing to compile.
Project MESSAGE: Using gold linker
In file included from
QAction: No such file or directory
compilation terminated.
Went ahead and added -Iqtbase/include/QtWidgets (where QAction resides) to
Makefile.qtwebkit but with no luck.
Is this a known issue or is it just me?
Thank you.
Regards,
Krenar
_______________________________________________
Qt5-feedback mailing list
http://lists.qt.nokia.com/mailman/listinfo/qt5-feedback
Loading...