RESOLVED FIXED 143219
Allow building on Windows without Cygwin
https://bugs.webkit.org/show_bug.cgi?id=143219
Summary Allow building on Windows without Cygwin
Myles C. Maxfield
Reported 2015-03-30 07:45:58 PDT
Allow building on Windows without Cygwin
Attachments
Patch (16.56 KB, patch)
2015-03-30 07:51 PDT, Myles C. Maxfield
no flags
Patch (16.52 KB, patch)
2015-03-30 09:25 PDT, Myles C. Maxfield
no flags
Patch (16.54 KB, patch)
2015-03-30 09:54 PDT, Myles C. Maxfield
no flags
Patch (17.70 KB, patch)
2015-03-30 15:22 PDT, Myles C. Maxfield
no flags
Patch (17.70 KB, patch)
2015-03-30 15:25 PDT, Myles C. Maxfield
no flags
Patch (17.73 KB, patch)
2015-03-30 15:31 PDT, Myles C. Maxfield
no flags
Patch (17.83 KB, patch)
2015-03-30 15:42 PDT, Myles C. Maxfield
no flags
Myles C. Maxfield
Comment 1 2015-03-30 07:51:10 PDT
Myles C. Maxfield
Comment 2 2015-03-30 08:49:33 PDT
Comment on attachment 249728 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249728&action=review > Source/WebCore/DerivedSources.make:1196 > + $(DELETE)InspectorOverlayPage.combined.html Space
Brent Fulgham
Comment 3 2015-03-30 09:06:42 PDT
Comment on attachment 249728 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249728&action=review >> Source/WebCore/DerivedSources.make:1196 >> + $(DELETE)InspectorOverlayPage.combined.html > > Space Can you replied the patch with this fix so we can confirm EWS is happy? > Source/WebCore/WebCore.vcxproj/migrate-scripts.pl:-64 > -system('/usr/bin/make', '-f', $MIGRATE_SCRIPTS_MAKEFILE, '-j', $NUMCPUS) and die "Failed to build $MIGRATE_SCRIPTS_MAKEFILE: $!"; Nice change! I never noticed this was a Makefile to copy five files. > Source/WebCore/bindings/scripts/preprocessor.pm:58 > + push(@args, qw(/EP)); Too much indentation. > Source/WebCore/bindings/scripts/preprocessor.pm:60 > + push(@args, qw(-E -P -x c++)); Ditto.
Brent Fulgham
Comment 4 2015-03-30 09:07:14 PDT
Comment on attachment 249728 [details] Patch This looks great! Please upload once more with that spacing fix so we can confirm it builds on all platforms. Otherwise, r+.
Myles C. Maxfield
Comment 5 2015-03-30 09:25:14 PDT
Myles C. Maxfield
Comment 6 2015-03-30 09:54:36 PDT
Myles C. Maxfield
Comment 7 2015-03-30 15:22:45 PDT
Myles C. Maxfield
Comment 8 2015-03-30 15:25:12 PDT
Myles C. Maxfield
Comment 9 2015-03-30 15:31:54 PDT
Myles C. Maxfield
Comment 10 2015-03-30 15:42:13 PDT
Brent Fulgham
Comment 11 2015-03-30 16:15:06 PDT
Comment on attachment 249777 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249777&action=review Looks good. Once EWS is happy go ahead and land it! Thanks! > Source/WebCore/DerivedSources.make:689 > + DELETE = cmd //C del Why two slashes here? I would expect "/C" or maybe "\/C", but not "//C" > Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make:4 > + @echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed" Did an EOL change get made here? These seem identical to the original state. Maybe double-check EOL is correct before checking in.
Myles C. Maxfield
Comment 12 2015-03-30 16:18:16 PDT
Comment on attachment 249777 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249777&action=review Overall comments >> Source/WebCore/DerivedSources.make:689 >> + DELETE = cmd //C del > > Why two slashes here? I would expect "/C" or maybe "\/C", but not "//C" http://stackoverflow.com/questions/2463037/calling-windows-commands-e-g-del-from-a-gnu-makefile
Myles C. Maxfield
Comment 13 2015-03-30 16:18:22 PDT
View in context: https://bugs.webkit.org/attachment.cgi?id=249777&action=review Overall comments >> Source/WebCore/DerivedSources.make:689 >> + DELETE = cmd //C del > > Why two slashes here? I would expect "/C" or maybe "\/C", but not "//C" http://stackoverflow.com/questions/2463037/calling-windows-commands-e-g-del-from-a-gnu-makefile
Myles C. Maxfield
Comment 14 2015-03-30 16:22:41 PDT
Comment on attachment 249777 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249777&action=review >> Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make:4 >> + @echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed" > > Did an EOL change get made here? These seem identical to the original state. Maybe double-check EOL is correct before checking in. This is migrating from Windows line endings to Unix line endings, in accordance with our style.
Brent Fulgham
Comment 15 2015-03-30 16:24:07 PDT
(In reply to comment #13) > View in context: > https://bugs.webkit.org/attachment.cgi?id=249777&action=review > > Overall comments > > >> Source/WebCore/DerivedSources.make:689 > >> + DELETE = cmd //C del > > > > Why two slashes here? I would expect "/C" or maybe "\/C", but not "//C" > > http://stackoverflow.com/questions/2463037/calling-windows-commands-e-g-del- > from-a-gnu-makefile Did you see the last comment in that thread? Maybe GNU make recognizes "//" as an escaped "/" flag, but "\/" is probably clearer to people familiar with escaping syntax in C, shell, etc.
Myles C. Maxfield
Comment 16 2015-03-30 16:38:02 PDT
(In reply to comment #15) > (In reply to comment #13) > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=249777&action=review > > > > Overall comments > > > > >> Source/WebCore/DerivedSources.make:689 > > >> + DELETE = cmd //C del > > > > > > Why two slashes here? I would expect "/C" or maybe "\/C", but not "//C" > > > > http://stackoverflow.com/questions/2463037/calling-windows-commands-e-g-del- > > from-a-gnu-makefile > > Did you see the last comment in that thread? Maybe GNU make recognizes "//" > as an escaped "/" flag, but "\/" is probably clearer to people familiar with > escaping syntax in C, shell, etc. I didn't see that. I'll update after the patch gets landed.
WebKit Commit Bot
Comment 17 2015-03-30 16:59:49 PDT
Comment on attachment 249777 [details] Patch Clearing flags on attachment: 249777 Committed r182164: <http://trac.webkit.org/changeset/182164>
WebKit Commit Bot
Comment 18 2015-03-30 16:59:54 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.