Title: [178823] trunk
Revision
178823
Author
[email protected]
Date
2015-01-21 02:20:53 -0800 (Wed, 21 Jan 2015)

Log Message

[EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
https://bugs.webkit.org/show_bug.cgi?id=140049

Reviewed by Gyuyoung Kim.

* Source/cmake/OptionsCommon.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (178822 => 178823)


--- trunk/ChangeLog	2015-01-21 10:02:59 UTC (rev 178822)
+++ trunk/ChangeLog	2015-01-21 10:20:53 UTC (rev 178823)
@@ -1,5 +1,14 @@
 2015-01-21  Csaba Osztrogonác  <[email protected]>
 
+        [EFL][WK2] EFL MiniBrowser doesn't run because shared library is not found
+        https://bugs.webkit.org/show_bug.cgi?id=140049
+
+        Reviewed by Gyuyoung Kim.
+
+        * Source/cmake/OptionsCommon.cmake:
+
+2015-01-21  Csaba Osztrogonác  <[email protected]>
+
         Remove ENABLE(INSPECTOR) ifdef guards
         https://bugs.webkit.org/show_bug.cgi?id=140668
 

Modified: trunk/Source/cmake/OptionsCommon.cmake (178822 => 178823)


--- trunk/Source/cmake/OptionsCommon.cmake	2015-01-21 10:02:59 UTC (rev 178822)
+++ trunk/Source/cmake/OptionsCommon.cmake	2015-01-21 10:20:53 UTC (rev 178823)
@@ -67,6 +67,8 @@
     if ("${LD_VERSION}" MATCHES "GNU gold")
         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fuse-ld=gold")
         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fuse-ld=gold")
+        set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--disable-new-dtags")
+        set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--disable-new-dtags")
     else ()
         message(WARNING "GNU gold linker isn't available, using the default system linker.")
     endif ()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to