Title: [180264] trunk/Source/bmalloc
Revision
180264
Author
zandober...@gmail.com
Date
2015-02-18 05:31:15 -0800 (Wed, 18 Feb 2015)

Log Message

Build bmalloc through CMake as a static library. It's then linked either
into the WTF library (if built as a shared library) or into the JSC and
WebKit2 libraries. There's no need to build it as a standalone shared library.

Rubber-stamped by Carlos Garcia Campos.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/CMakeLists.txt (180263 => 180264)


--- trunk/Source/bmalloc/CMakeLists.txt	2015-02-18 10:28:47 UTC (rev 180263)
+++ trunk/Source/bmalloc/CMakeLists.txt	2015-02-18 13:31:15 UTC (rev 180264)
@@ -17,6 +17,6 @@
 
 WEBKIT_WRAP_SOURCELIST(${bmalloc_SOURCES})
 include_directories(${bmalloc_INCLUDE_DIRECTORIES})
-add_library(bmalloc ${bmalloc_SOURCES})
+add_library(bmalloc STATIC ${bmalloc_SOURCES})
 target_link_libraries(bmalloc ${bmalloc_LIBRARIES})
 set_target_properties(bmalloc PROPERTIES COMPILE_DEFINITIONS "BUILDING_bmalloc")

Modified: trunk/Source/bmalloc/ChangeLog (180263 => 180264)


--- trunk/Source/bmalloc/ChangeLog	2015-02-18 10:28:47 UTC (rev 180263)
+++ trunk/Source/bmalloc/ChangeLog	2015-02-18 13:31:15 UTC (rev 180264)
@@ -1,3 +1,13 @@
+2015-02-18  Zan Dobersek  <zdober...@igalia.com>
+
+        Build bmalloc through CMake as a static library. It's then linked either
+        into the WTF library (if built as a shared library) or into the JSC and
+        WebKit2 libraries. There's no need to build it as a standalone shared library.
+
+        Rubber-stamped by Carlos Garcia Campos.
+
+        * CMakeLists.txt:
+
 2015-02-13  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         [BMalloc] Add a FIXME comment for memory alignas
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to