Skip to content

Commit

Permalink
[wip] Update to GCC 14.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed May 16, 2024
1 parent dd2f328 commit 601accd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ declare -r targets=(
# 'riscv64'
# 'armv7' lld
# 'arm64' lld
'powerpc64'
# 'powerpc64' broken
'powerpc'
'hppa'
'alpha'
'amd64'
Expand All @@ -210,6 +211,8 @@ for target in "${targets[@]}"; do
declare triplet='arm-unknown-openbsd';;
arm64)
declare triplet='aarch64-unknown-openbsd';;
powerpc)
declare triplet='powerpc-unknown-openbsd';;
powerpc64)
declare triplet='powerpc64-unknown-openbsd';;
riscv64)
Expand Down Expand Up @@ -318,7 +321,6 @@ for target in "${targets[@]}"; do
--enable-default-pie \
--enable-standard-branch-protection \
--enable-cpp \
--disable-gcov \
${cross_compile_flags} \
${extra_configure_flags} \
am_cv_func_iconv=no \
Expand Down

0 comments on commit 601accd

Please sign in to comment.