Bug 76985 - xcodebuild requirement for qtwebkit for linux?
Summary: xcodebuild requirement for qtwebkit for linux?
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Qt (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Linux
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-24 23:48 PST by Ilya
Modified: 2012-01-25 11:40 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ilya 2012-01-24 23:48:55 PST
My OS is Arch Linux x86_64
I follow the instruction on http://trac.webkit.org/wiki/BuildingQtOnLinux
I execute in webkit directory 
./Tools/Scripts/build-webkit --qt --release

Then I type make and QtWebKit compiles successfully

===========================================================
 WebKit is now built (51m:12s). 
 To run QtTestBrowser with this newly-built code, use the
 "../Tools/Scripts/run-launcher" script.
===========================================================

Then I type 

make -C WebKitBuild/Release install

And then I get an error:

make[1]: Вход в каталог `/home/ilya/build/libwebkit-git/src/webkit/Source'
make[2]: Вход в каталог `/home/ilya/build/libwebkit-git/src/webkit/Source/JavaScriptCore'
( xcodebuild  `perl -I../../Tools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'`  | grep -v setenv && exit ${PIPESTATUS[0]} )
/bin/sh: xcodebuild: команда не найдена
make[2]: *** [all] Ошибка 1

It tells me xcodebuild command not found, but as I understand xcodebuild is required only for MacOs.
Comment 1 Alexey Proskuryakov 2012-01-25 11:25:21 PST
> Then I type 
> make -C WebKitBuild/Release install

The wiki page you linked to doesn't tell to do that, as far as I can tell.
Comment 2 Ilya 2012-01-25 11:40:52 PST
Sorry, my mistake. I just tried to run make (after ./Tools/Scripts/build-webkit --qt --release
) in the source directory. Fixed.