35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
Taken from
|
|
https://bugs.webkit.org/show_bug.cgi?id=161900
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
Index: webkitgtk-2.16.1/Source/WTF/wtf/CMakeLists.txt
|
|
===================================================================
|
|
--- webkitgtk-2.16.1.orig/Source/WTF/wtf/CMakeLists.txt
|
|
+++ webkitgtk-2.16.1/Source/WTF/wtf/CMakeLists.txt
|
|
@@ -182,7 +182,6 @@ set(WTF_HEADERS
|
|
|
|
set(WTF_SOURCES
|
|
Assertions.cpp
|
|
- Atomics.cpp
|
|
AutomaticThread.cpp
|
|
BitVector.cpp
|
|
ClockType.cpp
|
|
@@ -301,6 +300,15 @@ if (NOT USE_SYSTEM_MALLOC)
|
|
list(APPEND WTF_LIBRARIES bmalloc)
|
|
endif ()
|
|
|
|
+file(WRITE ${CMAKE_BINARY_DIR}/test_atomics.cpp
|
|
+ "int main(void)\n"
|
|
+ "{ long long x = 1; return (int) __sync_add_and_fetch_8(&x, 1); }\n")
|
|
+try_compile(ATOMICS_BUILD_SUCCEEDED ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/test_atomics.cpp)
|
|
+if (NOT ATOMICS_BUILD_SUCCEEDED)
|
|
+ list(APPEND WTF_SOURCES Atomics.cpp)
|
|
+endif ()
|
|
+file(REMOVE ${CMAKE_BINARY_DIR}/test_atomics.cpp)
|
|
+
|
|
list(APPEND WTF_SOURCES
|
|
unicode/icu/CollatorICU.cpp
|
|
)
|