Build error: WebKit.build/WebKit.build/DerivedSources does not exist
I'm suffering from a failed build. Looking back, the only suspicious thing I see is this: Ld /Users/sfisher/xcodebuilddir/WebKit.framework/Versions/A/WebKit normal ppc setenv MACOSX_DEPLOYMENT_TARGET 10.3 cd /Users/sfisher/cvsroot/WebKit /usr/bin/g++-4.0 -o /Users/sfisher/xcodebuilddir/ WebKit.framework/Versions/A/WebKit -L/Users/sfisher/xcodebuilddir -F/ Users/sfisher/xcodebuilddir -F/System/Library/Frameworks/ WebKit.framework/Frameworks -F/System/Library/Frameworks/ ApplicationServices.framework/Frameworks -F/System/Library/Frameworks/ Carbon.framework/Frameworks -F/System/Library/PrivateFrameworks -F/ Users/sfisher/xcodebuilddir/WebKit.build/WebKit.build/DerivedSources - filelist /Users/sfisher/xcodebuilddir/WebKit.build/WebKit.build/ Objects-normal/ppc/WebKit.LinkFileList -framework ApplicationServices -framework Carbon -framework Cocoa -framework JavaScriptCore - framework WebCore -licucore -framework Security - lWebKitSystemInterface -arch ppc -Wl,- exported_symbols_list,WebKit.exp -Wl,-single_module -dynamiclib - compatibility_version 1 -current_version 1 -install_name /System/ Library/Frameworks/WebKit.framework/Versions/A/WebKit ld: warning -F: directory name (/Users/sfisher/xcodebuilddir/ WebKit.build/WebKit.build/DerivedSources) does not exist Any ideas? (I last ran update only a couple minutes ago.) -- Steven Fisher; sdfisher@spamcop.net "You must be the change you wish to see in the world." - Mahatma Gandhi
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? - Toby
Ld /Users/sfisher/xcodebuilddir/WebKit.framework/Versions/A/WebKit normal ppc setenv MACOSX_DEPLOYMENT_TARGET 10.3 cd /Users/sfisher/cvsroot/WebKit /usr/bin/g++-4.0 -o /Users/sfisher/xcodebuilddir/ WebKit.framework/Versions/A/WebKit -L/Users/sfisher/xcodebuilddir - F/Users/sfisher/xcodebuilddir -F/System/Library/Frameworks/ WebKit.framework/Frameworks -F/System/Library/Frameworks/ ApplicationServices.framework/Frameworks -F/System/Library/ Frameworks/Carbon.framework/Frameworks -F/System/Library/ PrivateFrameworks -F/Users/sfisher/xcodebuilddir/WebKit.build/ WebKit.build/DerivedSources -filelist /Users/sfisher/xcodebuilddir/ WebKit.build/WebKit.build/Objects-normal/ppc/WebKit.LinkFileList - framework ApplicationServices -framework Carbon -framework Cocoa - framework JavaScriptCore -framework WebCore -licucore -framework Security -lWebKitSystemInterface -arch ppc -Wl,- exported_symbols_list,WebKit.exp -Wl,-single_module -dynamiclib - compatibility_version 1 -current_version 1 -install_name /System/ Library/Frameworks/WebKit.framework/Versions/A/WebKit ld: warning -F: directory name (/Users/sfisher/xcodebuilddir/ WebKit.build/WebKit.build/DerivedSources) does not exist
Any ideas? (I last ran update only a couple minutes ago.)
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@spamcop.net "There is no 'Overkill.' There is only 'open fire' and 'I need to reload.'" -- Jevee Ceeta, Schlock Mercenary by Howard Tayler
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@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@opendarwin.org http://www.opendarwin.org/mailman/listinfo/webkit-dev
On Jun 8, 2005, at 3:31 PM, 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
That seemed to do it. Acid2 is now causing a browser crash rather than misrendering, so it appears I'm on the latest code. :) This would be a good entry on the website, actually: "How can I tell if Safari's using the new WebKit?" Is there a secret url like "about:webkitbuilddate" or somesuch? -- Steven Fisher; sdfisher@spamcop.net "You must be the change you wish to see in the world." - Mahatma Gandhi
On 08 Jun 2005, at 04.10, Steven Fisher wrote:
This would be a good entry on the website, actually: "How can I tell if Safari's using the new WebKit?" Is there a secret url like "about:webkitbuilddate" or somesuch?
Probably the quickest way to find out is to look at the bottom of an RSS feed. :) - Toby
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@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@opendarwin.org http://www.opendarwin.org/mailman/listinfo/webkit-dev
_______________________________________________ webkit-dev mailing list webkit-dev@opendarwin.org http://www.opendarwin.org/mailman/listinfo/webkit-dev
participants (3)
-
Chris Behm
-
Steven Fisher
-
Toby Peterson