Title: [111465] trunk/Source/_javascript_Core
Revision
111465
Author
[email protected]
Date
2012-03-20 16:33:52 -0700 (Tue, 20 Mar 2012)

Log Message

Windows (make based) build fix.
<rdar://problem/11069015>

* _javascript_Core.vcproj/_javascript_Core.make: devenv /rebuild doesn't work with _javascript_Core.vcproj. Use /clean and /build instead.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (111464 => 111465)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-20 23:33:23 UTC (rev 111464)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-20 23:33:52 UTC (rev 111465)
@@ -1,5 +1,12 @@
 2012-03-20  Steve Falkenburg  <[email protected]>
 
+        Windows (make based) build fix.
+        <rdar://problem/11069015>
+
+        * _javascript_Core.vcproj/_javascript_Core.make: devenv /rebuild doesn't work with _javascript_Core.vcproj. Use /clean and /build instead.
+
+2012-03-20  Steve Falkenburg  <[email protected]>
+
         Move WTF-related Windows project files out of _javascript_Core
         https://bugs.webkit.org/show_bug.cgi?id=80680
 

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core.make (111464 => 111465)


--- trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core.make	2012-03-20 23:33:23 UTC (rev 111464)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core.make	2012-03-20 23:33:52 UTC (rev 111465)
@@ -11,7 +11,8 @@
 	set ConfigurationBuildDir=$(OBJROOT)\$(BUILDSTYLE)
     set WebKitVSPropsRedirectionDir=$(SRCROOT)\AppleInternal\tools\vsprops\OpenSource\1\2\3\4\ 
 !IF "$(BUILDSTYLE)"=="Release_PGO"
-    devenv "_javascript_CoreSubmit.sln" /rebuild $(BUILDSTYLE)
+    devenv "_javascript_CoreSubmit.sln" /clean $(BUILDSTYLE)
+    devenv "_javascript_CoreSubmit.sln" /build $(BUILDSTYLE)
     set PATH=$(SYSTEMDRIVE)\cygwin\bin;$(PATH)
     xcopy "$(SRCROOT)\AppleInternal\tests\SunSpider\*" "%ConfigurationBuildDir%\tests\SunSpider" /e/v/i/h/y
     cd "%ConfigurationBuildDir%\tests\SunSpider"
@@ -20,7 +21,8 @@
     cd "$(SRCROOT)\_javascript_Core.vcproj"
     devenv "_javascript_CoreSubmit.sln" /build Release_PGO_Optimize
 !ELSE
-    devenv "_javascript_CoreSubmit.sln" /rebuild $(BUILDSTYLE)
+    devenv "_javascript_CoreSubmit.sln" /clean $(BUILDSTYLE)
+    devenv "_javascript_CoreSubmit.sln" /build $(BUILDSTYLE)
 !ENDIF
     -xcopy "%ConfigurationBuildDir%\bin\_javascript_Core.dll" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y
     -xcopy "%ConfigurationBuildDir%\bin\_javascript_Core_debug.dll" "$(DSTROOT)\AppleInternal\bin\" /e/v/i/h/y
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to