<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hello,<div class=""><br class=""></div><div class="">I had the same issue with GStreamer v1.15, while building direclty on my Raspberry.</div><div class=""><br class=""></div><div class="">Looking inside the openssl.recipe, under your cerbero/recipes, I’ve found that a define was added form ARMv7 for the Android platform, but not for Linux in general.</div><div class=""><span style="text-indent: -24px;" class=""><br class=""></span></div><div class=""><span style="text-indent: -24px;" class="">Adding a "</span><span style="text-indent: -24px;" class=""><span style="caret-color: rgb(244, 244, 244);" class="">or self.config.target_platform == Platform.LINUX” in the related check, inside the configure(self) function fixed the build for me:</span></span></div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><span style="text-indent: -24px;" class="">def configure(self):</span></div><p style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class=""> </span></p><div style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class="">    …</span></div><p style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class=""> </span></p><div style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class="">    if self.config.target_platform == Platform.ANDROID</span><span style="-webkit-font-kerning: none;" class=""> or self.config.target_platform == Platform.LINUX</span><span style="font-kerning: none" class="">:</span></div><div style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class="">        if self.config.target_arch == Architecture.ARMv7:</span></div><div style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class="">            # Openssl can't seem to figure this out anymore</span></div><div style="margin: 0px 0px 0px 24px; text-indent: -24px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class="">            config_sh += ' -D__ARM_MAX_ARCH__=7 '</span></div><p style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><span style="font-kerning: none" class=""> </span></p><div class="">Vince</div></div></body></html>