diff options
-rw-r--r-- | system/icu/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/icu/APKBUILD b/system/icu/APKBUILD index a2b0af950..62b39f2e4 100644 --- a/system/icu/APKBUILD +++ b/system/icu/APKBUILD @@ -43,6 +43,9 @@ prepare() { } build() { + # GCC 13 changed default fp precision behavior. (#1193) + export CXXFLAGS="${CXXFLAGS} -fexcess-precision=fast" + ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -59,7 +62,8 @@ build() { } check() { - make check + # Using TZ=UTC temporarily until we can update ICU. (#1169) + TZ=UTC make check } package() { |