From 34b8dd2d920feeb661f62f23e984ce37ed364321 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 22 Aug 2015 10:47:46 -0700 Subject: openssh: Remove use of -ftrapv when using clang lang with '-ftrapv' generates 'call __mulodi4', which is only implemented in compiler-rt library. However compiler-rt library only has i386/x86_64 backends (see '/usr/lib/clang/3.7.0/lib/linux/libclang_rt.*'). Gcc, on the other hand, generate 'call __mulvdi3', which is implemented in libgcc Signed-off-by: Khem Raj --- recipes-connectivity/openssh/openssh_%.bbappend | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 recipes-connectivity/openssh/openssh_%.bbappend diff --git a/recipes-connectivity/openssh/openssh_%.bbappend b/recipes-connectivity/openssh/openssh_%.bbappend new file mode 100644 index 0000000..88966e5 --- /dev/null +++ b/recipes-connectivity/openssh/openssh_%.bbappend @@ -0,0 +1,3 @@ +do_configure_prepend() { + sed -i -e '/-ftrapv/d' ${S}/configure.ac +} -- cgit v1.2.3-54-g00ecf