Title: [110430] trunk/Source/_javascript_Core
- Revision
- 110430
- Author
- zeno.albis...@nokia.com
- Date
- 2012-03-12 08:34:50 -0700 (Mon, 12 Mar 2012)
Log Message
[Qt][Mac] Build fails after enabling LLINT when JIT is disabled (r109863)
https://bugs.webkit.org/show_bug.cgi?id=80827
Qt on Mac uses OS(DARWIN) as well, but we do not want to enable LLINT.
Reviewed by Simon Hausmann.
* wtf/Platform.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (110429 => 110430)
--- trunk/Source/_javascript_Core/ChangeLog 2012-03-12 15:32:47 UTC (rev 110429)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-03-12 15:34:50 UTC (rev 110430)
@@ -1,3 +1,14 @@
+2012-03-12 Zeno Albisser <z...@webkit.org>
+
+ [Qt][Mac] Build fails after enabling LLINT when JIT is disabled (r109863)
+ https://bugs.webkit.org/show_bug.cgi?id=80827
+
+ Qt on Mac uses OS(DARWIN) as well, but we do not want to enable LLINT.
+
+ Reviewed by Simon Hausmann.
+
+ * wtf/Platform.h:
+
2012-03-12 Simon Hausmann <simon.hausm...@nokia.com>
Unreviewed prospective Qt/Mac build fix
Modified: trunk/Source/_javascript_Core/wtf/Platform.h (110429 => 110430)
--- trunk/Source/_javascript_Core/wtf/Platform.h 2012-03-12 15:32:47 UTC (rev 110429)
+++ trunk/Source/_javascript_Core/wtf/Platform.h 2012-03-12 15:34:50 UTC (rev 110430)
@@ -935,7 +935,7 @@
/* On some of the platforms where we have a JIT, we want to also have the
low-level interpreter. */
-#if !defined(ENABLE_LLINT) && ENABLE(JIT) && OS(DARWIN) && (CPU(X86) || CPU(X86_64) || CPU(ARM_THUMB2))
+#if !defined(ENABLE_LLINT) && ENABLE(JIT) && (OS(DARWIN) && !PLATFORM(QT)) && (CPU(X86) || CPU(X86_64) || CPU(ARM_THUMB2))
#define ENABLE_LLINT 1
#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes