Changeset 176519 in webkit
- Timestamp:
- Nov 24, 2014, 6:49:39 AM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
PlatformGTK.cmake (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r176517 r176519 1 2014-11-24 Alberto Garcia <berto@igalia.com> 2 3 Webkit2 doesnt build on powerpc 32 bits 4 https://bugs.webkit.org/show_bug.cgi?id=130837 5 6 Reviewed by Carlos Garcia Campos. 7 8 Check if libatomic is needed in order to use std::atomic, and add 9 it to the list of WebKit2 libraries. 10 11 * PlatformGTK.cmake: 12 1 13 2014-11-24 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Source/WebKit2/PlatformGTK.cmake
r176016 r176519 468 468 ) 469 469 470 file(WRITE ${CMAKE_BINARY_DIR}/test_atomic.cpp 471 "#include <atomic>\n" 472 "int main() { std::atomic<int64_t> i(0); i++; return 0; }\n") 473 try_compile(ATOMIC_BUILD_SUCCEEDED ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/test_atomic.cpp) 474 if (NOT ATOMIC_BUILD_SUCCEEDED) 475 list(APPEND WebKit2_LIBRARIES atomic) 476 endif () 477 file(REMOVE ${CMAKE_BINARY_DIR}/test_atomic.cpp) 478 470 479 set(SharedWebKit2Libraries 471 480 ${WebKit2_LIBRARIES}
Note:
See TracChangeset
for help on using the changeset viewer.