[Webkit-unassigned] [Bug 127776] Fix linking failure on EFL and GTK fro the jsCStack branch merge

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 28 08:36:17 PST 2014


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





--- Comment #2 from Mark Hahnenberg <mhahnenberg at apple.com>  2014-01-28 08:33:41 PST ---
After reading a little bit about this error, it seems that gcc requires that code linked into a shared library should, by default, be compiled with -fpic due to the constraints of the small code model and the size of the address space on 64-bit platforms. I can see two obvious solutions:

(1) Use -fpic to enable position independent code when building shared libraries.
(2) Use -mcmodel=large to enable the large code model when building shared libraries.

Either one of these should work.

-- 
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