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 8acb21b commit 4b3952fCopy full SHA for 4b3952f
main/gcc/APKBUILD
@@ -95,11 +95,15 @@ else
95
_builddir="$srcdir/build"
96
fi
97
98
+case "$CARCH" in
99
# GDC hasn't been ported to PowerPC
100
# See libphobos/configure.tgt in GCC sources for supported targets
101
# riscv fails with: error: static assert "unimplemented"
-case "$CARCH" in
102
ppc64le|riscv64) LANG_D=false ;;
103
+# GDC does currently not work on 32-bit musl architectures.
104
+# This is a known upstream issue.
105
+# See: https://github.com/dlang/druntime/pull/3383
106
+armhf|armv7|x86) LANG_D=false ;;
107
esac
108
109
# libitm has TEXTRELs in ARM build, so disable for now
0 commit comments