[oe] [PATCH] hiawatha: ennsure C flags are passed to builds.

Jeffrey C Honig jeffrey.honig at windriver.com
Tue Feb 12 22:22:27 UTC 2013


[ CQID: WIND00403568 ]

Hiawatha was overriding existing C flags instead of prepending warning flags.
This caused build failures on multilibs because the C compiler could not find
the proper sysroot.

Signed-off-by: Jeffrey C Honig <jeffrey.honig at windriver.com>
---
 recipes-httpd/hiawatha/files/cmake.patch |   16 ++++++++++++++++
 recipes-httpd/hiawatha/hiawatha_8.6.bb   |    3 +++
 2 files changed, 19 insertions(+)
 create mode 100644 recipes-httpd/hiawatha/files/cmake.patch

diff --git a/recipes-httpd/hiawatha/files/cmake.patch b/recipes-httpd/hiawatha/files/cmake.patch
new file mode 100644
index 0000000..f597781
--- /dev/null
+++ b/recipes-httpd/hiawatha/files/cmake.patch
@@ -0,0 +1,16 @@
+It is necessary to include the original CMAKE_C_FLAGS to insure that
+the sysroot is passed to the compiler, instead of just setting warning
+options.  Otherwise we'll get problem croos compiling in some
+circumstances.
+
+--- a/CMakeLists.txt	2012-10-31 14:16:45.000000000 -0400
++++ b/CMakeLists.txt	2013-02-12 14:07:04.297058345 -0500
+@@ -2,7 +2,7 @@
+ project(Hiawatha C)
+ 
+ # Compiler
+-set(CMAKE_C_FLAGS "-Wall -Wextra")
++set(CMAKE_C_FLAGS "-Wall -Wextra ${CMAKE_C_FLAGS}")
+ set(CMAKE_BUILD_TYPE "RelWithDebInfo")
+ 
+ # Options
diff --git a/recipes-httpd/hiawatha/hiawatha_8.6.bb b/recipes-httpd/hiawatha/hiawatha_8.6.bb
index 837354b..d46a525 100644
--- a/recipes-httpd/hiawatha/hiawatha_8.6.bb
+++ b/recipes-httpd/hiawatha/hiawatha_8.6.bb
@@ -4,9 +4,12 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
 DEPENDS = "libxml2 libxslt"
 
+PR = "r1"
+
 SECTION = "net"
 
 SRC_URI = "http://hiawatha-webserver.org/files/${BPN}-${PV}.tar.gz \
+           file://cmake.patch \
            file://hiawatha-init"
 
 SRC_URI[md5sum] = "372ea9e8329ed36e4fb781fdc1a6734c"
-- 
1.7.9.5





More information about the Openembedded-devel mailing list