Title: [215817] trunk/Source/WTF
Revision
215817
Author
[email protected]
Date
2017-04-26 11:28:01 -0700 (Wed, 26 Apr 2017)

Log Message

[ARM] Enable GCC visibility
https://bugs.webkit.org/show_bug.cgi?id=171296

Patch by Don Olmstead <[email protected]> on 2017-04-26
Reviewed by Michael Catanzaro.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (215816 => 215817)


--- trunk/Source/WTF/ChangeLog	2017-04-26 18:22:27 UTC (rev 215816)
+++ trunk/Source/WTF/ChangeLog	2017-04-26 18:28:01 UTC (rev 215817)
@@ -1,3 +1,12 @@
+2017-04-26  Don Olmstead  <[email protected]>
+
+        [ARM] Enable GCC visibility
+        https://bugs.webkit.org/show_bug.cgi?id=171296
+
+        Reviewed by Michael Catanzaro.
+
+        * wtf/Platform.h:
+
 2017-04-26  Yusuke Suzuki  <[email protected]>
 
         sendMessageScoped's signal handler calls LocklessBag::consumeAll, which causes heap deallocation in signal handler and leads deadlock

Modified: trunk/Source/WTF/wtf/Platform.h (215816 => 215817)


--- trunk/Source/WTF/wtf/Platform.h	2017-04-26 18:22:27 UTC (rev 215816)
+++ trunk/Source/WTF/wtf/Platform.h	2017-04-26 18:28:01 UTC (rev 215817)
@@ -436,11 +436,10 @@
 
 /* Export macro support. Detects the attributes available for shared library symbol export
    decorations. */
-#if OS(WINDOWS) \
-    || (COMPILER_HAS_CLANG_DECLSPEC(dllimport) && COMPILER_HAS_CLANG_DECLSPEC(dllexport))
+#if OS(WINDOWS) || (COMPILER_HAS_CLANG_DECLSPEC(dllimport) && COMPILER_HAS_CLANG_DECLSPEC(dllexport))
 #define USE_DECLSPEC_ATTRIBUTE 1
 #define USE_VISIBILITY_ATTRIBUTE 0
-#elif defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC__)
+#elif defined(__GNUC__)
 #define USE_DECLSPEC_ATTRIBUTE 0
 #define USE_VISIBILITY_ATTRIBUTE 1
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to