[Webkit-unassigned] [Bug 88301] [Qt][Win] Fix broken jsc.exe linking

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 5 14:35:27 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=88301


Simon Hausmann <hausmann at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hausmann at webkit.org




--- Comment #3 from Simon Hausmann <hausmann at webkit.org>  2012-06-05 14:35:27 PST ---
All of the symbols in question have declspec(dllimport) in them, which means they were compiled with the WTF_EXPORT macros in a way that the macro expanded to declspec(dllimport), but the symbols in question are not exposed in the DLL sense. Instead we link WTF statically into jsc.exe, so no dllimport/export foo should be needed for those symbols. I think the fix is to disable the WTF_EXPORT macros when compiling the sources for jsc.exe.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list