From 29827fde524a42fe343b32ea3c2f543e9ed3ee55 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 15 Feb 2020 03:27:02 +0300 Subject: Release version 65.1.0+1 Drop copyright notice from source code Convert libicuuc test from C to C++ so it can link library statically Drop linking -lpthread and -lm for MinGW GCC --- libicuio/libicuio/buildfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libicuio/libicuio') diff --git a/libicuio/libicuio/buildfile b/libicuio/libicuio/buildfile index 90630f4..2fc6f89 100644 --- a/libicuio/libicuio/buildfile +++ b/libicuio/libicuio/buildfile @@ -1,5 +1,4 @@ # file : libicuio/buildfile -# copyright : Copyright (c) 2018-2019 Code Synthesis Ltd # license : Unicode License; see accompanying LICENSE file import int_libs = libicui18n%lib{icui18n} @@ -76,8 +75,11 @@ switch $tclass, $tsys } case 'windows', 'mingw32' { - cxx.loptions += -Wl,-Bsymbolic -Wl,--enable-auto-import - cxx.libs += -lpthread -lm + # Note that we ommit -mthreads, -lpthread, and -lm that the upstream + # package also passes (see libicuuc/libicu/buildfile for details). + # + cxx.loptions += -Wl,-Bsymbolic -Wl,--enable-auto-import \ + -Wl,--no-undefined # Make sure all symbols are resolvable. } case 'windows' { -- cgit v1.1