[webkit-help] How to build JavaScriptCore on Ubuntu only
Gabor Loki
loki at inf.u-szeged.hu
Thu Apr 29 00:48:59 PDT 2010
On cs, 2010-04-29 at 01:31 -0400, Zhou Li wrote:
>
>
>
> Thank you for your script. I tried build-jsc.sh but there are still
> problems.
...
> make: *** No rule to make target `libjscore.a', needed by `jsc'.
> Stop.
> make: *** Waiting for unfinished jobs....
>
The JavaScriptCore is a static lib now.
So you should add the following code snippet before this line:
if !(qmake -r ../../../JavaScriptCore/jsc.pro
####################
if !(qmake -r \
../../../JavaScriptCore/JavaScriptCore.pro -o Makefile.jsc \
$QMAKEARGS)
then
exit 1
fi
if !(make -f Makefile.jsc $JOBS)
then
exit 1
fi
####################
--Gabor
More information about the webkit-help
mailing list