Reputation: 11
I've been attempting to build WebKit for Qt with WebGL support. According to https://trac.webkit.org/wiki/QtWebKitWebGL, I need to run the following command to do so:
Tools/Scripts/build-webkit --qt --3d-canvas
That's exactly what I did. I've downloaded the WebKit source code (r171650) and attempted to compile it with exactly that command - unfortunately, it seems as though the build-webkit script just exits without doing anything:
dominik@ubuntu:~/WebKit-r171650$ export QTDIR=/usr/share/qt5/
dominik@ubuntu:~/WebKit-r171650$ Tools/Scripts/build-webkit --clean
dominik@ubuntu:~/WebKit-r171650$ Tools/Scripts/build-webkit --qt --3d-canvas
====================================================================
WebKit is now built (00m:00s).
====================================================================
dominik@ubuntu:~/WebKit-r171650$
Any ideas about why this might be happening?
Upvotes: 1
Views: 379
Reputation: 197
Try specifying build type, this works for me:
./Tools/Scripts/build-webkit --debug --efl
Upvotes: 0