We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076095a commit ba1dd18Copy full SHA for ba1dd18
package/vlc/vlc.mk
@@ -15,6 +15,13 @@ VLC_AUTORECONF = YES
15
# Install vlc libraries in staging.
16
VLC_INSTALL_STAGING = YES
17
18
+# gcc bug internal compiler error: in merge_overlapping_regs, at
19
+# regrename.c:304. This bug is fixed since gcc 6.
20
+ifeq ($(BR2_microblaze):$(BR2_TOOLCHAIN_GCC_AT_LEAST_6),y:)
21
+VLC_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -O0"
22
+VLC_CONF_OPTS += --disable-optimizations
23
+endif
24
+
25
# VLC defines two autoconf functions which are also defined by our own pkg.m4
26
# from pkgconf. Unfortunately, they are defined in a different way: VLC adds
27
# --enable- options, but pkg.m4 adds --with- options. To make sure we use
0 commit comments