diff options
author | Marian Buschsieweke <marian.buschsieweke@ovgu.de> | 2022-12-05 21:11:38 +0100 |
---|---|---|
committer | alice <alice@ayaya.dev> | 2022-12-05 20:51:35 +0000 |
commit | bfce992594357a55575ccfecaa88c2debfd6387c (patch) | |
tree | e58e3b67c2ef46d6090f30c5a492a9d99153c30a | |
parent | 5461dcf3c94eba2ac22b7da0dd1155dcce689d93 (diff) | |
download | aports-bfce992594357a55575ccfecaa88c2debfd6387c.tar.gz aports-bfce992594357a55575ccfecaa88c2debfd6387c.tar.bz2 aports-bfce992594357a55575ccfecaa88c2debfd6387c.tar.xz |
community/gcc-avr: Finally fix compilation with C++
MR !42055 didn't succeed in fixing the compilation with C++ as a
contradicting configure flag took preference.
-rw-r--r-- | community/gcc-avr/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/gcc-avr/APKBUILD b/community/gcc-avr/APKBUILD index 681eb03c0ad..f6e900e26e9 100644 --- a/community/gcc-avr/APKBUILD +++ b/community/gcc-avr/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Stefan Wagner <stw@bit-strickerei.de> pkgname=gcc-avr pkgver=12.2.0 -pkgrel=3 +pkgrel=4 pkgdesc="The GNU Compiler Collection for AVR targets" url="https://gcc.gnu.org/" depends="binutils-avr" @@ -35,7 +35,7 @@ build() { --with-python-dir=share/gcc-avr \ --libexecdir=/usr/lib \ --enable-languages=c,c++ \ - --enable-__cxa_atexit \ + --disable-__cxa_atexit \ --disable-install-libiberty \ --disable-libssp \ --disable-libstdcxx-pch \ |