* [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485
@ 2019-06-01 10:20 Fabrice Fontaine
2019-06-01 10:56 ` Giulio Benetti
2019-06-20 19:51 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-06-01 10:20 UTC (permalink / raw)
To: buildroot
With Microblaze Gcc version <= 9.x the build fails due to gcc bug 68485:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68485. The bug show up when
building opencv with optimization but not when building with -O0. To
work around this, if BR2_TOOLCHAIN_HAS_GCC_BUG_68458=y, we force using
-O0.
Fixes:
- http://autobuild.buildroot.org/results/17fff0f312ebd520ba3341976ba56fd8c85ee376
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/opencv/opencv.mk | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/package/opencv/opencv.mk b/package/opencv/opencv.mk
index ccc2d820da..4c15075fe0 100644
--- a/package/opencv/opencv.mk
+++ b/package/opencv/opencv.mk
@@ -10,6 +10,7 @@ OPENCV_INSTALL_STAGING = YES
OPENCV_LICENSE = BSD-3-Clause
OPENCV_LICENSE_FILES = LICENSE
OPENCV_SUPPORTS_IN_SOURCE_BUILD = NO
+OPENCV_CXXFLAGS = $(TARGET_CXXFLAGS)
# OpenCV component options
OPENCV_CONF_OPTS += \
@@ -166,6 +167,10 @@ OPENCV_CONF_OPTS += \
OPENCV_DEPENDENCIES += zlib
+ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_68485),y)
+OPENCV_CXXFLAGS += -O0
+endif
+
ifeq ($(BR2_PACKAGE_OPENCV_WITH_FFMPEG),y)
OPENCV_CONF_OPTS += -DWITH_FFMPEG=ON
OPENCV_DEPENDENCIES += ffmpeg bzip2
@@ -195,8 +200,8 @@ OPENCV_CONF_OPTS += -DWITH_GTK=OFF
endif
ifeq ($(BR2_PACKAGE_OPENCV_WITH_JASPER),y)
-OPENCV_CONF_OPTS += -DWITH_JASPER=ON \
- -DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) -D__STDC_LIMIT_MACROS"
+OPENCV_CONF_OPTS += -DWITH_JASPER=ON
+OPENCV_CXXFLAGS += -D__STDC_LIMIT_MACROS
OPENCV_DEPENDENCIES += jasper
else
OPENCV_CONF_OPTS += -DWITH_JASPER=OFF
@@ -232,6 +237,8 @@ else
OPENCV_CONF_OPTS += -DWITH_V4L=OFF -DWITH_LIBV4L=OFF
endif
+OPENCV_CONF_OPTS += -DCMAKE_CXX_FLAGS="$(OPENCV_CXXFLAGS)"
+
# Installation hooks:
define OPENCV_CLEAN_INSTALL_DOC
$(RM) -fr $(TARGET_DIR)/usr/share/OpenCV/doc
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485
2019-06-01 10:20 [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485 Fabrice Fontaine
@ 2019-06-01 10:56 ` Giulio Benetti
2019-06-20 19:51 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Giulio Benetti @ 2019-06-01 10:56 UTC (permalink / raw)
To: buildroot
Hello,
Il 01/06/2019 12:20, Fabrice Fontaine ha scritto:
> With Microblaze Gcc version <= 9.x the build fails due to gcc bug 68485:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68485. The bug show up when
> building opencv with optimization but not when building with -O0. To
> work around this, if BR2_TOOLCHAIN_HAS_GCC_BUG_68458=y, we force using
> -O0.
>
> Fixes:
> - http://autobuild.buildroot.org/results/17fff0f312ebd520ba3341976ba56fd8c85ee376
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
> ---
> package/opencv/opencv.mk | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/package/opencv/opencv.mk b/package/opencv/opencv.mk
> index ccc2d820da..4c15075fe0 100644
> --- a/package/opencv/opencv.mk
> +++ b/package/opencv/opencv.mk
> @@ -10,6 +10,7 @@ OPENCV_INSTALL_STAGING = YES
> OPENCV_LICENSE = BSD-3-Clause
> OPENCV_LICENSE_FILES = LICENSE
> OPENCV_SUPPORTS_IN_SOURCE_BUILD = NO
> +OPENCV_CXXFLAGS = $(TARGET_CXXFLAGS)
>
> # OpenCV component options
> OPENCV_CONF_OPTS += \
> @@ -166,6 +167,10 @@ OPENCV_CONF_OPTS += \
>
> OPENCV_DEPENDENCIES += zlib
>
> +ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_68485),y)
> +OPENCV_CXXFLAGS += -O0
> +endif
> +
> ifeq ($(BR2_PACKAGE_OPENCV_WITH_FFMPEG),y)
> OPENCV_CONF_OPTS += -DWITH_FFMPEG=ON
> OPENCV_DEPENDENCIES += ffmpeg bzip2
> @@ -195,8 +200,8 @@ OPENCV_CONF_OPTS += -DWITH_GTK=OFF
> endif
>
> ifeq ($(BR2_PACKAGE_OPENCV_WITH_JASPER),y)
> -OPENCV_CONF_OPTS += -DWITH_JASPER=ON \
> - -DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) -D__STDC_LIMIT_MACROS"
> +OPENCV_CONF_OPTS += -DWITH_JASPER=ON
> +OPENCV_CXXFLAGS += -D__STDC_LIMIT_MACROS
> OPENCV_DEPENDENCIES += jasper
> else
> OPENCV_CONF_OPTS += -DWITH_JASPER=OFF
> @@ -232,6 +237,8 @@ else
> OPENCV_CONF_OPTS += -DWITH_V4L=OFF -DWITH_LIBV4L=OFF
> endif
>
> +OPENCV_CONF_OPTS += -DCMAKE_CXX_FLAGS="$(OPENCV_CXXFLAGS)"
> +
> # Installation hooks:
> define OPENCV_CLEAN_INSTALL_DOC
> $(RM) -fr $(TARGET_DIR)/usr/share/OpenCV/doc
>
--
Giulio Benetti
CTO
MICRONOVA SRL
Sede: Via A. Niedda 3 - 35010 Vigonza (PD)
Tel. 049/8931563 - Fax 049/8931346
Cod.Fiscale - P.IVA 02663420285
Capitale Sociale ? 26.000 i.v.
Iscritta al Reg. Imprese di Padova N. 02663420285
Numero R.E.A. 258642
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485
2019-06-01 10:20 [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485 Fabrice Fontaine
2019-06-01 10:56 ` Giulio Benetti
@ 2019-06-20 19:51 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-06-20 19:51 UTC (permalink / raw)
To: buildroot
On Sat, 1 Jun 2019 12:20:32 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> With Microblaze Gcc version <= 9.x the build fails due to gcc bug 68485:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68485. The bug show up when
> building opencv with optimization but not when building with -O0. To
> work around this, if BR2_TOOLCHAIN_HAS_GCC_BUG_68458=y, we force using
> -O0.
>
> Fixes:
> - http://autobuild.buildroot.org/results/17fff0f312ebd520ba3341976ba56fd8c85ee376
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/opencv/opencv.mk | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-20 19:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-01 10:20 [Buildroot] [PATCH 1/1] package/opencv: fix build due to gcc bug 68485 Fabrice Fontaine
2019-06-01 10:56 ` Giulio Benetti
2019-06-20 19:51 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox