Title: [146598] trunk/Source/WebCore
Revision
146598
Author
[email protected]
Date
2013-03-22 06:27:23 -0700 (Fri, 22 Mar 2013)

Log Message

BUILD FIX (r146208): Export shouldPrintExceptions methods for iOS

Fixes the following build failure:

    Undefined symbols for architecture i386:
      "__ZN7WebCore11PageConsole24setShouldPrintExceptionsEb", referenced from:
            +[WebCoreStatistics setShouldPrintExceptions:] in WebCoreStatistics.o
      "__ZN7WebCore11PageConsole21shouldPrintExceptionsEv", referenced from:
            +[WebCoreStatistics shouldPrintExceptions] in WebCoreStatistics.o
    ld: symbol(s) not found for architecture i386
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

* WebCore.exp.in: Move symbols so they're exported for iOS as
well.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (146597 => 146598)


--- trunk/Source/WebCore/ChangeLog	2013-03-22 13:18:22 UTC (rev 146597)
+++ trunk/Source/WebCore/ChangeLog	2013-03-22 13:27:23 UTC (rev 146598)
@@ -1,3 +1,20 @@
+2013-03-22  David Kilzer  <[email protected]>
+
+        BUILD FIX (r146208): Export shouldPrintExceptions methods for iOS
+
+        Fixes the following build failure:
+
+            Undefined symbols for architecture i386:
+              "__ZN7WebCore11PageConsole24setShouldPrintExceptionsEb", referenced from:
+                    +[WebCoreStatistics setShouldPrintExceptions:] in WebCoreStatistics.o
+              "__ZN7WebCore11PageConsole21shouldPrintExceptionsEv", referenced from:
+                    +[WebCoreStatistics shouldPrintExceptions] in WebCoreStatistics.o
+            ld: symbol(s) not found for architecture i386
+            clang: error: linker command failed with exit code 1 (use -v to see invocation)
+
+        * WebCore.exp.in: Move symbols so they're exported for iOS as
+        well.
+
 2013-03-22  Yury Semikhatsky  <[email protected]>
 
         Unreviewed. Fix Chromium Win compilation after r146583.

Modified: trunk/Source/WebCore/WebCore.exp.in (146597 => 146598)


--- trunk/Source/WebCore/WebCore.exp.in	2013-03-22 13:18:22 UTC (rev 146597)
+++ trunk/Source/WebCore/WebCore.exp.in	2013-03-22 13:27:23 UTC (rev 146598)
@@ -173,6 +173,8 @@
 __ZN7WebCore11MemoryCache18resourceForRequestERKNS_15ResourceRequestE
 __ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginEEENS_18SecurityOriginHashENS1_10HashTraitsIS5_EEEE
 __ZN7WebCore11MemoryCache25removeResourcesWithOriginEPNS_14SecurityOriginE
+__ZN7WebCore11PageConsole21shouldPrintExceptionsEv
+__ZN7WebCore11PageConsole24setShouldPrintExceptionsEb
 __ZN7WebCore11URLWithDataEP6NSDataP5NSURL
 __ZN7WebCore11memoryCacheEv
 __ZN7WebCore11startOfWordERKNS_15VisiblePositionENS_9EWordSideE
@@ -1738,8 +1740,6 @@
 __ZN7WebCore11CachedImage5imageEv
 __ZN7WebCore11globalPointERK8_NSPointP8NSWindow
 __ZN7WebCore11toUserSpaceERK7_NSRectP8NSWindow
-__ZN7WebCore11PageConsole21shouldPrintExceptionsEv
-__ZN7WebCore11PageConsole24setShouldPrintExceptionsEb
 __ZN7WebCore12EventHandler10mouseMovedEP7NSEvent
 __ZN7WebCore12EventHandler10wheelEventEP7NSEvent
 __ZN7WebCore12EventHandler12mouseDraggedEP7NSEvent
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to