Bug 35461 - Fail to build on sparc
Summary: Fail to build on sparc
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other Linux
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-02-26 15:40 PST by Aurelien Jarno
Modified: 2011-06-16 23:04 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Aurelien Jarno 2010-02-26 15:40:25 PST
webkit fails to build on sparc due to a small typo in Platform.h. The patch below fixes the problem.

--- src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h.orig      2010-02-26 23:37:16.000000000 +0000
+++ src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h   2010-02-26 23:37:31.000000000 +0000
@@ -232,7 +232,7 @@

 /* PLATFORM(SPARC) */
 #if PLATFORM(SPARC32) || PLATFORM(SPARC64)
-#define WTF_PLATFORM_SPARC
+#define WTF_PLATFORM_SPARC 1
 #endif

 /* PLATFORM(PPC64) */
Comment 1 Alexey Proskuryakov 2010-02-26 19:36:14 PST
See also: bug 35326. 

Would you be willing to submit a patch for review, as documented in
<http://webkit.org/coding/contributing.html>?
Comment 2 Gavin Barraclough 2011-06-16 23:04:51 PDT
This was fixed in r56124