[webkit-dev] Build error: WebKit.build/WebKit.build/DerivedSources does not exist

Chris Behm cjbehm at gmail.com
Wed Jun 8 05:13:55 PDT 2005


I ran into and fixed that same thing locally. It's a bit of a hack,  
but I just added an additional if clause at the start so my run- 
safari script looks like:

if (-d "$productDir/JavaScriptCore.framework") {
     //do nothing, work around.
} elsif (-d "$productDir/Deployment") {
     $productDir = "$productDir/Deployment";
} elsif (-d "$productDir/Development") {
     $productDir = "$productDir/Development";
}

I figure it'll hold until I either update to Xcode 2.1 or the run- 
safari script gets an official fix ;)

Chris

On Jun 8, 2005, at 3:31 AM, Toby Peterson wrote:

> Yeah. I submitted a patch that broke building on Xcode 2.0. :-( I'm  
> working on this ATM. As a temporary workaround, you can delete this  
> block of code from run-safari:
>
> # Try to find Xcode 2.1 build products; prefer Deployment if both  
> are present.
> if (-d "$productDir/Deployment") {
>     $productDir = "$productDir/Deployment";
> } elsif (-d "$productDir/Development") {
>     $productDir = "$productDir/Development";
> }
>
> - Toby
>
> On 08 Jun 2005, at 03.21, Steven Fisher wrote:
>
>
>>
>> On Jun 8, 2005, at 3:09 PM, Toby Peterson wrote:
>>
>>
>>
>>> On 08 Jun 2005, at 03.03, Steven Fisher wrote:
>>>
>>>
>>>
>>>
>>>> I'm suffering from a failed build. Looking back, the only  
>>>> suspicious thing I see is this:
>>>>
>>>>
>>>>
>>>
>>> The error below doesn't seem terribly suspicious. When you say  
>>> "failed build", what do you mean? What errors do you get?
>>>
>>>
>>
>> I should have been more clear on that. I don't get an error on  
>> build, and it actually appears to succeed. However, when I try to  
>> use the run-safari script I get this:
>>
>> Can't find executable at /Users/sfisher/xcodebuilddir/Deployment/ 
>> JavaScriptCore.framework/Versions/A/JavaScriptCore; have you built  
>> successfully?
>>
>> Given the question, I assumed the build failed. It's possible I'm  
>> interpreting that wrong. :)
>>
>> The Deployment directory seems to only contain two aliases:  
>> libWebKitSystemInterface.a and usr.
>>
>> -- 
>> Steven Fisher; sdfisher at spamcop.net
>> "There is no 'Overkill.' There is only 'open fire' and 'I need to  
>> reload.'" -- Jevee Ceeta, Schlock Mercenary by Howard Tayler
>>
>> _______________________________________________
>> webkit-dev mailing list
>> webkit-dev at opendarwin.org
>> http://www.opendarwin.org/mailman/listinfo/webkit-dev
>>
>>
>
> _______________________________________________
> webkit-dev mailing list
> webkit-dev at opendarwin.org
> http://www.opendarwin.org/mailman/listinfo/webkit-dev
>




More information about the webkit-dev mailing list