diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-13 14:10:02 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-17 12:56:21 +0100 |
| commit | 64b41ca4f3e4b6d475832088c45545fc54b15977 (patch) | |
| tree | e2570de2bd187af54bbafad5b4c18157946cd707 /meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch | |
| parent | 153fd8a5a9f0e5bd0803637ff4899273cfcc5768 (diff) | |
| download | meta-openembedded-64b41ca4f3e4b6d475832088c45545fc54b15977.tar.gz | |
webkit-efl: upgrade to 1.11.0
* webkit-efl snapshots are now versioned consistenly with efl
bump PE to prevent version going backwards
* announcement:
http://sourceforge.net/p/enlightenment/mailman/message/32713414/
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch')
| -rw-r--r-- | meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch b/meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch deleted file mode 100644 index c769c7fbbf..0000000000 --- a/meta-efl/recipes-efl/webkit/webkit-efl/0001-WebKitHelpers.cmake-Add-Wno-error-cast-align.patch +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | From b37711ca03ea9410e795f29398069fed9e9c2d30 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 3 | Date: Mon, 13 Jan 2014 17:21:25 +0100 | ||
| 4 | Subject: [PATCH 1/3] WebKitHelpers.cmake: Add -Wno-error=cast-align | ||
| 5 | |||
| 6 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 7 | --- | ||
| 8 | Source/cmake/WebKitHelpers.cmake | 6 +++++- | ||
| 9 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
| 10 | |||
| 11 | diff --git a/Source/cmake/WebKitHelpers.cmake b/Source/cmake/WebKitHelpers.cmake | ||
| 12 | index 409931c..345b346 100644 | ||
| 13 | --- a/Source/cmake/WebKitHelpers.cmake | ||
| 14 | +++ b/Source/cmake/WebKitHelpers.cmake | ||
| 15 | @@ -44,7 +44,11 @@ macro(WEBKIT_SET_EXTRA_COMPILER_FLAGS _target) | ||
| 16 | |||
| 17 | # Enable errors on warning | ||
| 18 | if (OPTION_ENABLE_WERROR) | ||
| 19 | - set(OLD_COMPILE_FLAGS "-Werror -Wno-error=unused-parameter ${OLD_COMPILE_FLAGS}") | ||
| 20 | + # FIXME: When we use -fno-tree-dce to support the jsCStack branch merge, build error occurs due to the uninitialization. Temporarily we set | ||
| 21 | + # uninitialized as build warning in order to support the jsCStack merge. https://bugs.webkit.org/show_bug.cgi?id=127777. | ||
| 22 | + set(OLD_COMPILE_FLAGS "-Werror -Wno-error=unused-parameter -Wno-error=uninitialized ${OLD_COMPILE_FLAGS}") | ||
| 23 | + # | /OE/build/shr-core/tmp-eglibc/work/arm920tt-oe-linux-gnueabi/webkit-efl/2.3.2+svnr159807-r0/webkit-efl/Source/JavaScriptCore/runtime/JSDataViewPrototype.cpp:161:104: error: cast from 'uint8_t* {aka unsigned char*}' to 'JSC::FloatTypedArrayAdaptor<double, JSC::GenericTypedArrayView<JSC::Float64Adaptor>, JSC::JSGenericTypedArrayView<JSC::Float64Adaptor>, (JSC::TypedArrayType)9u>::Type* {aka double*}' increases required alignment of target type [-Werror=cast-align] | ||
| 24 | + set(OLD_COMPILE_FLAGS "-Wno-error=cast-align -Wno-error=array-bounds -Wno-error=deprecated-declarations ${OLD_COMPILE_FLAGS}") | ||
| 25 | endif () | ||
| 26 | |||
| 27 | set_target_properties(${_target} PROPERTIES | ||
| 28 | -- | ||
| 29 | 1.9.0 | ||
| 30 | |||
