====== compilation et installation de ICU4C 49.1.2 ======
[[mybuild#icu4c|slugOSBE 5.3 binaries]]
* Le home de ICU est ici : http://site.icu-project.org/
* ICU est nécessaire pour l'extension intl de php (5.4.6)
* Les téléchargements des sources sont ici
* http://download.icu-project.org/files/icu4c/49.1.2/icu4c-49_1_2-data.zip
* http://download.icu-project.org/files/icu4c/49.1.2/icu4c-49_1_2-docs.zip
* http://download.icu-project.org/files/icu4c/49.1.2/icu4c-49_1_2-src.tgz
* https://ssl.icu-project.org/files/icu4c/49.1.2/icu4c-src-49_1_2.md5
===== Prérequis =====
* avoir un compilateur [[:nslu2:#installation_d_un_compilateur|Compilateur C et C++]]
===== Compilation =====
Je suis tombé sur deux problèmes lors de la compilation de ICU4C sur ARM BigEndian
- ''undefined reference to %%__sync_sub_and_fetch_4%%''
* ++exemple|\\ ''gxx -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/makeconv makeconv.o ucnvstat.o genmbcs.o gencnvex.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm\\ ../../lib/libicuuc.so: undefined reference to `%%__%%sync_val_compare_and_swap_4'\\ ../../lib/libicuuc.so: undefined reference to `%%__%%sync_add_and_fetch_4'\\ ../../lib/libicuuc.so: undefined reference to `%%__%%sync_sub_and_fetch_4'\\ collect2: ld returned 1 exit status\\ make[2]: %%***%% [../../bin/makeconv] Error 1\\ make[2]: Leaving directory `/home/src/icu/BUILD/tools/makeconv' '' ++.
* This is because gcc/g%%++%% 4.2.4 is too old to compile such a new software.
* Solution : Modify Makefile.in and add ''linux-atomic.o'' -- a file built from gcc 4.6.3 source tree -- to the dependencies of libicuuc.
* see [[solve-_sync_add_and_fetch_4|How to solve __sync_add_and_fetch_4]] borrowed from [[http://vincesoft.blogspot.fr/2012/04/how-to-solve-undefined-reference-to.html|Technology tutorials]] for instructions to build this file.
- ''udata_swapDataHeader(): header size mismatch - headerSize 32768 infoSize 5120 length 1024''\\ Bad BigEndian automatic detection. ++Exemple|\\ ''make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'\\ rm -rf icupkg.inc\\ make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'\\ LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg -tb ../../source/data/in/icudt49l.dat ./out/icudt49b.dat\\ udata_swapDataHeader(): header size mismatch - headerSize 32768 infoSize 5120 length 1024\\ make[1]: %%***%% [out/icudt49b.dat] Error 8\\ make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'\\ make: %%***%% [all-recursive] Error 2\\ Command exited with non-zero status 2\\ ''++
* Solution : use ''CPPFLAGS=-DU_IS_BIG_ENDIAN=1'' when configuring ICU4C.
* Original solution from [[http://tug.org/pipermail/tlbuild/2012q2/thread.html#2266|this thread]] of TeXLive build mailing list.
This is how I compiled ICU4C 49.1.2. You need to have the file ''linux-atomic.o'' from gcc-4.6.3 first. See [[[[solve-_sync_add_and_fetch_4|How to solve __sync_add_and_fetch_4]] for details.
#! /bin/sh
set -x
date
resize
PATH='/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/bin:/opt/sbin:/opt/schplurtz/bin:/opt/schplurtz/sbin'
prefix=/opt/schplurtz
id
env | grep -v SSH
pwd
sudo opkg list_installed
sudo ipkg list_installed
test -r icu4c-49_1_2-src.tgz || time curl -O http://download.icu-project.org/files/icu4c/49.1.2/icu4c-49_1_2-src.tgz
test -r icu4c-49_1_2-data.zip || time : curl -O http://download.icu-project.org/files/icu4c/49.1.2/icu4c-49_1_2-data.zip
time rm -rf icu
time tar xf icu4c-49_1_2-src.tgz
cd icu
#(
# cd source
# time unzip -o ../../icu4c-49_1_2-data.zip
#)
set -e
# We have to patch the file icu/source/common/Makefile.in and add /opt/schplurtz/lib/linux-atomic.o in the
# dependencies of libicuuc.so . linux-atomic.o contains functions such as __sync_add_and_fetch_4
# those functions are needed. modern gcc do have those functions more or less as internal function
# The file linux-atomic.o was compiled as stated here : http://schplurtz.free.fr/wiki/private/nslu2/solve-_sync_add_and_fetch_4
# The source file was gcc-4.6.3/gcc/config/arm/linux-atomic.c in gcc-core-4.6.3.tgz archive.
# Initial ideas and solution was found here : http://vincesoft.blogspot.fr/2012/04/how-to-solve-undefined-reference-to.html
# Here is the kind of error you get if you don't patch icu/source/common/Makefile.in on an nslu2 running slugosBE 5.3
# g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/makeconv makeconv.o ucnvstat.o genmbcs.o gencnvex.o -L../..
# /lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
# ../../lib/libicuuc.so: undefined reference to `__sync_val_compare_and_swap_4'
# ../../lib/libicuuc.so: undefined reference to `__sync_add_and_fetch_4'
# ../../lib/libicuuc.so: undefined reference to `__sync_sub_and_fetch_4'
# collect2: ld returned 1 exit status
# make[2]: *** [../../bin/makeconv] Error 1
# make[2]: Leaving directory `/home/src/icu/BUILD/tools/makeconv'
cp -a source/common/Makefile.in source/common/Makefile.in.org >/dev/null 2>&1 ||
cp source/common/Makefile.in source/common/Makefile.in.org
sed -i -e 's,icudataver.o icuplug.o,& /opt/schplurtz/lib/linux-atomic.o,' source/common/Makefile.in
echo patched source/common/Makefile.in
ls -l source/common/Makefile*
diff -Naur source/common/Makefile.in.org source/common/Makefile.in || :
# Pour éviter ce problème :
# probleme: make[2]: Entering directory `/home/cmartin/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
# probleme: rm -rf icupkg.inc
# probleme: make[2]: Leaving directory `/home/cmartin/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
# probleme: LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg -tb ../../source/data/in/icudt49l.dat ./out/icudt49b.dat
# probleme: udata_swapDataHeader(): header size mismatch - headerSize 32768 infoSize 5120 length 1024
# probleme: make[1]: *** [out/icudt49b.dat] Error 8
# probleme: make[1]: Leaving directory `/home/cmartin/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
# probleme: make: *** [all-recursive] Error 2
# probleme: Command exited with non-zero status 2
# la solution est sur cette archive de liste de compilation de TeX
# Live qui a le même problème avec une autre architecture. Le problème
# est que, ./configure détecte bien que l'architecture est BigEndian
# mais le resultat de cette detection n'est pas utilisé partout et
# d'autres parties utilisent d'autres methodes de detection du boutisme.
# Et ca foire car ces autres methodes ne connaissent pas toutes les
# combinaisons possibles de plateforme-OS (sans parler de ARM qui
# peut tourner en BE ou en LE). La solution donnee sur la liste est
# de passer CPPFLAGS=-DU_IS_BIG_ENDIAN=1 en variable d'environnement
# a l'execution de "make". Je vais plutôt essayer de mettre ces flags
# dans des fichiers. L'adresse du fil de la liste est :
# http://tug.org/pipermail/tlbuild/2012q2/thread.html#2266 Il faut
# lire tous les messages, la solution est dans le dernier.
mkdir BUILD
cd BUILD
time env \
CXXFLAGS=-DU_CHARSET_IS_UTF8=1 \
CFLAGS=-DU_CHARSET_IS_UTF8=1 \
CPPFLAGS=-DU_IS_BIG_ENDIAN=1 \
../source/runConfigureICU \
Linux \
--prefix="$prefix" \
--disable-renaming
test -r uconfig.h.prepend &&
time sed -i -e "/^#define __UCONFIG_H__/r uconfig.h.prepend" ../source/common/unicode/uconfig.h
time make
time make check
touch NOW
sleep 2
time sudo env PATH=$PATH make install
date
find "$prefix" -newer NOW ! -type d | tar cTf - nslu2-slugosbe-icu4c-49.1.2.tar
tar tvf nslu2-slugosbe-icu4c-49.1.2.tar
date
===== Les détails =====
+ set -x
+ date
Thu Sep 27 18:08:19 CEST 2012
+ resize
COLUMNS=299;LINES=50;export COLUMNS LINES;
+ PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/bin:/opt/sbin:/opt/schplurtz/bin:/opt/schplurtz/sbin
+ prefix=/opt/schplurtz
+ id
uid=500(schplurtz) gid=100(users) groups=100(users)
+ env
+ grep -v SSH
USER=schplurtz
MAIL=/var/mail/schplurtz
HOME=/home/schplurtz
OLDPWD=/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD
PS1=\[\e]0;\u@\h: \w\a\]\[\e[01;32m\]\h\[\e[00m\]:\[\e[01;34m\]\W\[\e[00m\] ($?) \$
LOGNAME=schplurtz
TERM=screen
PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/bin:/opt/sbin:/opt/schplurtz/bin:/opt/schplurtz/sbin
STY=5472.pts-0.schpluntz
SHELL=/bin/sh
WINDOW=0
PWD=/home/schplurtz/Replicated/SOFT/nslu2/ICU
TERMCAP=SC|screen|VT 100/ANSI X3.64 virtual terminal:\
:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:bs:bt=\E[Z:\
:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:ct=\E[3g:\
:do=^J:nd=\E[C:pt:rc=\E8:rs=\Ec:sc=\E7:st=\EH:up=\EM:\
:le=^H:bl=^G:cr=^M:it#8:ho=\E[H:nw=\EE:ta=^I:is=\E)0:\
:li#43:co#177:am:xn:xv:LP:sr=\EM:al=\E[L:AL=\E[%dL:\
:cs=\E[%i%d;%dr:dl=\E[M:DL=\E[%dM:dc=\E[P:DC=\E[%dP:\
:im=\E[4h:ei=\E[4l:mi:IC=\E[%d@:ks=\E[?1h\E=:\
:ke=\E[?1l\E>:vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l:\
:ti=\E[?1049h:te=\E[?1049l:us=\E[4m:ue=\E[24m:so=\E[3m:\
:se=\E[23m:md=\E[1m:mr=\E[7m:me=\E[m:ms:\
:Co#8:pa#64:AF=\E[3%dm:AB=\E[4%dm:op=\E[39;49m:AX:\
:as=\E(0:ae=\E(B:\
:ac=\140\140aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++,,hhII00:\
:k0=\E[10~:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:\
:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:k;=\E[21~:\
:F1=\E[23~:F2=\E[24~:F3=\E[25~:F4=\E[26~:F5=\E[28~:\
:F6=\E[29~:F7=\E[31~:F8=\E[32~:F9=\E[33~:FA=\E[34~:\
:kb=^H:kh=\E[1~:@1=\E[1~:kH=\E[4~:@7=\E[4~:kN=\E[6~:\
:kP=\E[5~:kI=\E[2~:kD=\E[3~:ku=\EOA:kd=\EOB:kr=\EOC:\
:kl=\EOD:km:
EDITOR=/opt/bin/vim
+ pwd
/home/schplurtz/Replicated/SOFT/nslu2/ICU
+ sudo opkg list_installed
base-files - 3.0.14-r84 -
base-passwd - 3.5.19-r0 -
bash - 3.2-r7 -
beep - 1.2.2-r2 -
binutils - 2.18.50.0.7-r6 -
binutils-dev - 2.18.50.0.7-r6 -
binutils-symlinks - 2.18.50.0.7-r6 -
busybox - 1.13.2-r16 -
cpio - 2.5-r4 -
cpp - 4.2.4-r3 -
cpp-symlinks - 4.2.4-r3 -
cups - 1.2.10-r3 -
dbus - 1.2.1-r10 -
devio - 1.2-r0 -
e2fsprogs-badblocks - 1.38-r19 -
e2fsprogs-blkid - 1.38-r19 -
e2fsprogs-e2fsck - 1.38-r19 -
e2fsprogs-fsck - 1.38-r19 -
e2fsprogs-mke2fs - 1.38-r19 -
file - 4.21-r0 -
g++ - 4.2.4-r3 -
g++-symlinks - 4.2.4-r3 -
gcc - 4.2.4-r3 -
gcc-symlinks - 4.2.4-r3 -
glibc-extra-nss - 2.6.1-r15 -
initscripts-slugos - 1.0-r112.19 -
iptables - 1.3.8-r4 -
iptables-utils - 1.3.8-r4 -
ixp4xx-npe - 2.4-r1 -
kernel - 2.6.27.8+svnr1085-r3 -
kernel-2.6.27.8 - 2.6.27.8+svnr1085-r3 -
kernel-image-2.6.27.8 - 2.6.27.8+svnr1085-r3 -
kernel-module-configfs - 2.6.27.8+svnr1085-r3 -
kernel-module-ehci-hcd - 2.6.27.8+svnr1085-r3 -
kernel-module-ext2 - 2.6.27.8+svnr1085-r3 -
kernel-module-ext3 - 2.6.27.8+svnr1085-r3 -
kernel-module-fat - 2.6.27.8+svnr1085-r3 -
kernel-module-ip-tables - 2.6.27.8+svnr1085-r3 -
kernel-module-ipt-masquerade - 2.6.27.8+svnr1085-r3 -
kernel-module-iptable-filter - 2.6.27.8+svnr1085-r3 -
kernel-module-iptable-nat - 2.6.27.8+svnr1085-r3 -
kernel-module-jbd - 2.6.27.8+svnr1085-r3 -
kernel-module-libata - 2.6.27.8+svnr1085-r3 -
kernel-module-lockd - 2.6.27.8+svnr1085-r3 -
kernel-module-mbcache - 2.6.27.8+svnr1085-r3 -
kernel-module-md-mod - 2.6.27.8+svnr1085-r3 -
kernel-module-netconsole - 2.6.27.8+svnr1085-r3 -
kernel-module-nf-conntrack - 2.6.27.8+svnr1085-r3 -
kernel-module-nf-conntrack-ipv4 - 2.6.27.8+svnr1085-r3 -
kernel-module-nf-nat - 2.6.27.8+svnr1085-r3 -
kernel-module-nfs - 2.6.27.8+svnr1085-r3 -
kernel-module-nls-base - 2.6.27.8+svnr1085-r3 -
kernel-module-nls-cp437 - 2.6.27.8+svnr1085-r3 -
kernel-module-nls-utf8 - 2.6.27.8+svnr1085-r3 -
kernel-module-ohci-hcd - 2.6.27.8+svnr1085-r3 -
kernel-module-pata-artop - 2.6.27.8+svnr1085-r3 -
kernel-module-raid1 - 2.6.27.8+svnr1085-r3 -
kernel-module-sunrpc - 2.6.27.8+svnr1085-r3 -
kernel-module-uhci-hcd - 2.6.27.8+svnr1085-r3 -
kernel-module-usblp - 2.6.27.8+svnr1085-r3 -
kernel-module-vfat - 2.6.27.8+svnr1085-r3 -
kernel-module-via-velocity - 2.6.27.8+svnr1085-r3 -
kernel-module-x-tables - 2.6.27.8+svnr1085-r3 -
kernel-module-xt-multiport - 2.6.27.8+svnr1085-r3 -
kernel-module-xt-state - 2.6.27.8+svnr1085-r3 -
ldd - 2.6.1-r15 -
libc6 - 2.6.1-r15 -
libc6-dev - 2.6.1-r15 -
libcrypto0.9.8 - 0.9.8j-r1 -
libcups2 - 1.2.10-r3 -
libcupsimage - 1.2.10-r3 -
libdbus-1-3 - 1.2.1-r10 -
libexpat1 - 2.0.0-r2 -
libgcc1 - 4.2.4-r5 -
libgcrypt11 - 1.4.1-r0 -
libgmp-dev - 4.2.4-r0 -
libgmp3 - 4.2.4-r0 -
libgnutls26 - 2.4.2-r3 -
libgpg-error0 - 1.4-r2 -
libjpeg62 - 6b-r8 -
libmpfr-dev - 2.3.1-r0 -
libmpfr1 - 2.3.1-r0 -
libpcap - 1.0.0-r5 -
libpng12-0 - 1.2.31-r6 -
libpopt0 - 1.7-r1 -
libsmi - 0.4.8-r1 -
libstdc++-dev - 4.2.4-r3 -
libstdc++6 - 4.2.4-r5 -
libthread-db1 - 2.6.1-r15 -
libtool - 1.5.10-r5 -
libvolume-id0 - 118-r5 -
libz1 - 1.2.3-r5 -
linux-libc-headers-dev - 2.6.23-r3 -
make - 3.81-r0 -
mdadm - 2.5.5-r0 -
module-init-tools - 3.4-r1 -
module-init-tools-depmod - 3.4-r1 -
modutils-initscripts - 1.0-r3 -
ncurses - 5.4-r16 -
netbase - 4.21-r31 -
ntpdate - 4.2.2p3-r1 -
openssh - 4.6p1-r6 -
openssh-scp - 4.6p1-r6 -
openssh-ssh - 4.6p1-r6 -
openssh-sshd - 4.6p1-r6 -
opkg-collateral - 1.0-r1 -
opkg-nogpg-nocurl - 0.1.6+svnr160-r7 -
rng-tools - 2-1 -
rsync - 3.0.0-r1 -
samba-essential - 3.0.34-r8 -
screen - 4.0.2-r2 -
slugos-init - 5.0-r10 -
ssh-keygen - 4.6p1-r6 -
strace - 4.5.14-r7 -
sudo - 1.6.8p12-r3 -
sysvinit - 2.86-r46 -
sysvinit-inittab - 2.86-r46 -
sysvinit-pidof - 2.86-r46 -
tar - 1.20-r0 -
task-slugos - 1.0-r22 -
tcpdump - 4.0.0-r1 -
tinylogin - 1.4-r6 -
tzdata-europe - 2007k-r4 -
udev - 118-r5 -
udev-utils - 118-r5 -
update-modules - 1.0-r8 -
update-rc.d - 0.7-r1 -
+ sudo ipkg list_installed
adduser - 1.10.3-1 - a multi-call binary for login and user account administration
bzip2 - 1.0.6-1 - Very high-quality data compression program
coreutils - 8.4-1 - Bunch of heavyweight *nix core utilities
cyrus-sasl-libs - 2.1.23-2 - Provides client or server side authentication (see RFC 2222).
diffutils - 3.1-1 - contains gnu diff, cmp, sdiff and diff3 to display differences between and among text files
expat - 2.0.1-1 - XML Parser library
fontconfig - 2.8.0-0 - Font configuration library
freetype - 2.3.6-1 - Free truetype library
gconv-modules - 2.6.1-1 - Provides gconv modules missing from the firmware. These are used by glibc iconv() implementation.
gdbm - 1.8.3-4 - GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard UNIX dbm routines.
git - 1.7.12-1 - GIT is a directory tree content manager that can be used for distributed revision control.
gnutls - 2.6.5-1 - GNU Transport Layer Security Library.
lftp - 4.3.7-1 - Sophisticated ftp/http client, file transfer program supporting a number of network protocols.
libcurl - 7.24.0-1 - Curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FI
libdb - 4.2.52-3 - Berkeley DB Libraries
libgcrypt - 1.5.0-1 - GNU cryptography libray, needed by gnutls
libgd - 2.0.35-6 - An ANSI C library for the dynamic creation of images
libgpg-error - 1.10-1 - Error handling library for libgcrypt
libjpeg - 6b-3 - collection of jpeg tools
libpng - 1.2.44-1 - Portable Network Graphics Libraries
libstdc++ - 6.0.9-6 - Standard C++ library, needed for dynamically linked C++ programs
libtasn1 - 2.13-1 - ASN.1 structure parser library.
libxml2 - 2.7.8-1 - Libxml2 is the XML C parser and toolkit developed for the Gnome project.
libxslt - 1.1.26-2 - An XML Stylesheet processor based on libxml2
lsof - 4.82-1 - LiSt Open Files - a diagnostic tool.
ltrace - 0.5.3-1 - Tracks runtime library calls in dynamically linked programs.
mlocate - 0.24-1 - A merginging locate program to find files fast
ncurses - 5.7-1 - NCurses libraries
nvi - 1.79-2 - The original Berkeley Vi.
openldap-libs - 2.3.43-2 - Open Lightweight Directory Access Protocol
openssl - 0.9.8v-2 - Openssl provides the ssl implementation in libraries libcrypto and libssl, and is needed by many other applications and librari
openssl-dev - 0.9.8v-2 - openssl native development files
psmisc - 22.17-1 - A set of some small useful utilities that use the proc filesystem.
rcs - 5.7-2 - The Revision Control System (RCS) manages multiple revisions of files.
readline - 6.1-2 - The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are
tree - 1.6.0-1 - list contents of directories in a tree-like format.
vim - 7.3-2 - Yet another version of the vi editor.
zlib - 1.2.5-1 - zlib is a library implementing the 'deflate' compression system.
Successfully terminated.
+ test -r icu4c-49_1_2-src.tgz
+ test -r icu4c-49_1_2-data.zip
+ time rm -rf icu
real 0m 8.07s
user 0m 0.57s
sys 0m 3.79s
+ time tar xf icu4c-49_1_2-src.tgz
real 0m 36.69s
user 0m 24.11s
sys 0m 9.77s
+ cd icu
+ set -e
+ cp -a source/common/Makefile.in source/common/Makefile.in.org
+ sed -i -e s,icudataver.o icuplug.o,& /opt/schplurtz/lib/linux-atomic.o, source/common/Makefile.in
+ echo patched source/common/Makefile.in
patched source/common/Makefile.in
+ ls -l source/common/Makefile.in source/common/Makefile.in.org
-rw-r--r-- 1 schplurtz users 7391 Sep 27 18:09 source/common/Makefile.in
-rw-r--r-- 1 schplurtz users 7357 Jun 1 16:52 source/common/Makefile.in.org
+ diff -Naur source/common/Makefile.in.org source/common/Makefile.in
--- source/common/Makefile.in.org Fri Jun 1 16:52:50 2012
+++ source/common/Makefile.in Thu Sep 27 18:09:06 2012
@@ -99,7 +99,7 @@
serv.o servnotf.o servls.o servlk.o servlkf.o servrbf.o servslkf.o \
uidna.o usprep.o uts46.o punycode.o \
util.o util_props.o parsepos.o locbased.o cwchar.o wintz.o mutex.o dtintrv.o ucnvsel.o propsvec.o \
-ulist.o uloc_tag.o icudataver.o icuplug.o
+ulist.o uloc_tag.o icudataver.o icuplug.o /opt/schplurtz/lib/linux-atomic.o
## Header files to install
HEADERS = $(srcdir)/unicode/*.h
+ :
+ mkdir BUILD
+ cd BUILD
+ time env CXXFLAGS=-DU_CHARSET_IS_UTF8=1 CFLAGS=-DU_CHARSET_IS_UTF8=1 CPPFLAGS=-DU_IS_BIG_ENDIAN=1 ../source/runConfigureICU Linux --prefix=/opt/schplurtz --disable-renaming
export CPP= CC=gcc CXX=g++ CPPFLAGS=-DU_IS_BIG_ENDIAN=1 CFLAGS=-DU_CHARSET_IS_UTF8=1 -O3 CXXFLAGS=-DU_CHARSET_IS_UTF8=1 -O3 LDFLAGS= MAKE=
Running ./configure --prefix=/opt/schplurtz --disable-renaming for Linux using the GNU C++ compiler
checking for ICU version numbers... release 49.1.2, library 49.1.2, unicode version 6.1
checking build system type... armv5teb-unknown-linux-gnueabi
checking host system type... armv5teb-unknown-linux-gnueabi
checking whether to build debug libraries... no
checking whether to build release libraries... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /opt/bin/install -c
checking for gmake... no
checking for gnumake... no
checking for doxygen... no
checking checking for executable suffix...
checking whether strict compiling is on... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking size of void *... 4
checking whether runnable 64 bit binaries are built by default... no
checking which Makefile fragment to use for armv5teb-unknown-linux-gnueabi... mh-linux
checking for floor in -lm... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether to enable auto cleanup of libraries... no
checking whether to enable draft APIs... yes
checking for ranlib... ranlib
checking for ar... ar
checking whether to enable renaming of symbols... no
checking whether to enable function and data tracing... no
checking whether to enable dynamic loading of plugins... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for library containing dlopen... -ldl
checking for dlopen... yes
checking for gettimeofday... yes
checking if we have a C++ compiler... Good
checking if #include works... yes
checking for pthread_attr_init in -lpthread... yes
checking for mmap... yes
checking for genccode assembly... -a gcc
checking for inttypes.h... (cached) yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking whether byte ordering is bigendian... yes
checking for nl_langinfo... yes
checking for nl_langinfo's argument to obtain the codeset... CODESET
checking for namespace support... yes
checking for properly overriding new and delete... yes
checking for placement new and delete... yes
checking for popen... yes
checking for tzset... yes
checking for tzname... yes
checking for timezone... no
checking for __timezone... yes
checking for int8_t... yes
checking for uint8_t... yes
checking for int16_t... yes
checking for uint16_t... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for int64_t... yes
checking for uint64_t... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for library containing wcscpy... none required
checking size of wchar_t... 4
checking for UTF-16 string literal support... unknown
checking for a library suffix to use... none
CPPFLAGS=-DU_IS_BIG_ENDIAN=1 $(THREADSCPPFLAGS) -DU_DISABLE_RENAMING=1
CFLAGS=-DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long $(THREADSCFLAGS)
CXXFLAGS=-DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long $(THREADSCXXFLAGS)
configure: creating ./config.status
config.status: creating icudefs.mk
config.status: creating Makefile
config.status: creating data/pkgdataMakefile
config.status: creating config/Makefile.inc
config.status: creating config/icu.pc
config.status: creating config/pkgdataMakefile
config.status: creating data/Makefile
config.status: creating stubdata/Makefile
config.status: creating common/Makefile
config.status: creating i18n/Makefile
config.status: creating layout/Makefile
config.status: creating layoutex/Makefile
config.status: creating io/Makefile
config.status: creating extra/Makefile
config.status: creating extra/uconv/Makefile
config.status: creating extra/uconv/pkgdataMakefile
config.status: creating extra/scrptrun/Makefile
config.status: creating tools/Makefile
config.status: creating tools/ctestfw/Makefile
config.status: creating tools/toolutil/Makefile
config.status: creating tools/makeconv/Makefile
config.status: creating tools/genrb/Makefile
config.status: creating tools/genccode/Makefile
config.status: creating tools/gencmn/Makefile
config.status: creating tools/gencnval/Makefile
config.status: creating tools/genctd/Makefile
config.status: creating tools/gentest/Makefile
config.status: creating tools/gennorm2/Makefile
config.status: creating tools/genbrk/Makefile
config.status: creating tools/gensprep/Makefile
config.status: creating tools/icuinfo/Makefile
config.status: creating tools/icupkg/Makefile
config.status: creating tools/icuswap/Makefile
config.status: creating tools/pkgdata/Makefile
config.status: creating tools/tzcode/Makefile
config.status: creating tools/gencfu/Makefile
config.status: creating test/Makefile
config.status: creating test/compat/Makefile
config.status: creating test/testdata/Makefile
config.status: creating test/testdata/pkgdataMakefile
config.status: creating test/hdrtst/Makefile
config.status: creating test/intltest/Makefile
config.status: creating test/cintltst/Makefile
config.status: creating test/iotest/Makefile
config.status: creating test/letest/Makefile
config.status: creating test/perf/Makefile
config.status: creating test/perf/collationperf/Makefile
config.status: creating test/perf/dicttrieperf/Makefile
config.status: creating test/perf/ubrkperf/Makefile
config.status: creating test/perf/charperf/Makefile
config.status: creating test/perf/convperf/Makefile
config.status: creating test/perf/normperf/Makefile
config.status: creating test/perf/DateFmtPerf/Makefile
config.status: creating test/perf/howExpensiveIs/Makefile
config.status: creating test/perf/strsrchperf/Makefile
config.status: creating test/perf/unisetperf/Makefile
config.status: creating test/perf/usetperf/Makefile
config.status: creating test/perf/ustrperf/Makefile
config.status: creating test/perf/utfperf/Makefile
config.status: creating test/perf/utrie2perf/Makefile
config.status: creating samples/Makefile
config.status: creating samples/date/Makefile
config.status: creating samples/cal/Makefile
config.status: creating samples/layout/Makefile
ICU for C/C++ 49.1.2 is ready to be built.
=== Important Notes: ===
Data Packaging: library
This means: ICU data will be linked with ICU. A shared data library will be built.
To locate data: ICU will use the linked data library. If linked with the stub library located in stubdata/, the application can use udata_setCommonData() or set a data path to override.
Building ICU: Use a GNU make such as make to build ICU.
checking the version of "make"... 3.81 (we wanted at least 3.80)
ok
*** WARNING: You must set the following flags before code compiled against this ICU will function properly:
-DU_DISABLE_RENAMING=1
The recommended way to do this is to prepend the following lines to source/common/unicode/uconfig.h or #include them near the top of that file.
Creating the file uconfig.h.prepend
--------------- uconfig.h.prepend
/* ICU customizations: put these lines at the top of uconfig.h */
/* -DU_DISABLE_RENAMING=1 */
#define U_DISABLE_RENAMING 1
--------------- end uconfig.h.prepend
If the result of the above commands looks okay to you, go to the directory
source in the ICU distribution to build ICU. Please remember that ICU needs
GNU make to build properly...
real 2m 12.37s
user 1m 17.04s
sys 0m 47.07s
+ test -r uconfig.h.prepend
+ time sed -i -e /^#define __UCONFIG_H__/r uconfig.h.prepend ../source/common/unicode/uconfig.h
real 0m 0.05s
user 0m 0.03s
sys 0m 0.01s
+ time make
rebuilding config/icucross.mk
cd ./config; \
make -f pkgdataMakefile
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/config'
rm -rf pkgdata.inc
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/config'
rm -rf config/icu-config
/opt/bin/install -c ../source/config/icu-config-top config/icu-config
chmod u+w config/icu-config
LC_ALL=C sed -f ../source/config/make2sh.sed < ./config/Makefile.inc | grep -v '#M#' | uniq >> config/icu-config
LC_ALL=C sed -f ../source/config/make2sh.sed < ../source/config/mh-linux | grep -v '#M#' | uniq >> config/icu-config
cat ../source/config/icu-config-bottom >> config/icu-config
echo "# Rebuilt on "`date` >> config/icu-config
chmod u-w config/icu-config
config/icu-uc.pc updated.
config/icu-i18n.pc updated.
config/icu-io.pc updated.
config/icu-le.pc updated.
config/icu-lx.pc updated.
/bin/bash ../source/mkinstalldirs lib
mkdir lib
/bin/bash ../source/mkinstalldirs bin
mkdir bin
make[0]: Making `all' in `stubdata'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
generating dependency information for ../../source/stubdata/stubdata.c
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o stubdata.o ../../source/stubdata/stubdata.c
gcc -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -nodefaultlibs -nostdlib -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicudata.so.49 -o libicudata.so.49.1.2 stubdata.o
rm -f libicudata.so.49 && ln -s libicudata.so.49.1.2 libicudata.so.49
rm -f libicudata.so && ln -s libicudata.so.49.1.2 libicudata.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[0]: Making `all' in `common'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
generating dependency information for ../../source/common/icuplug.c
generating dependency information for ../../source/common/icudataver.c
generating dependency information for ../../source/common/uloc_tag.c
generating dependency information for ../../source/common/ulist.c
generating dependency information for ../../source/common/propsvec.c
generating dependency information for ../../source/common/ucnvsel.cpp
generating dependency information for ../../source/common/dtintrv.cpp
generating dependency information for ../../source/common/mutex.cpp
generating dependency information for ../../source/common/wintz.c
generating dependency information for ../../source/common/cwchar.c
generating dependency information for ../../source/common/locbased.cpp
generating dependency information for ../../source/common/parsepos.cpp
generating dependency information for ../../source/common/util_props.cpp
generating dependency information for ../../source/common/util.cpp
generating dependency information for ../../source/common/punycode.cpp
generating dependency information for ../../source/common/uts46.cpp
generating dependency information for ../../source/common/usprep.cpp
generating dependency information for ../../source/common/uidna.cpp
generating dependency information for ../../source/common/servslkf.cpp
generating dependency information for ../../source/common/servrbf.cpp
generating dependency information for ../../source/common/servlkf.cpp
generating dependency information for ../../source/common/servlk.cpp
generating dependency information for ../../source/common/servls.cpp
generating dependency information for ../../source/common/servnotf.cpp
generating dependency information for ../../source/common/serv.cpp
generating dependency information for ../../source/common/rbbitblb.cpp
generating dependency information for ../../source/common/rbbistbl.cpp
generating dependency information for ../../source/common/rbbisetb.cpp
generating dependency information for ../../source/common/rbbiscan.cpp
generating dependency information for ../../source/common/rbbirb.cpp
generating dependency information for ../../source/common/rbbinode.cpp
generating dependency information for ../../source/common/rbbidata.cpp
generating dependency information for ../../source/common/rbbi.cpp
generating dependency information for ../../source/common/triedict.cpp
generating dependency information for ../../source/common/dictbe.cpp
generating dependency information for ../../source/common/brkeng.cpp
generating dependency information for ../../source/common/ubrk.cpp
generating dependency information for ../../source/common/brkiter.cpp
generating dependency information for ../../source/common/uarrsort.c
generating dependency information for ../../source/common/unifunct.cpp
generating dependency information for ../../source/common/unifilt.cpp
generating dependency information for ../../source/common/caniter.cpp
generating dependency information for ../../source/common/ruleiter.cpp
generating dependency information for ../../source/common/usetiter.cpp
generating dependency information for ../../source/common/uniset.cpp
generating dependency information for ../../source/common/uset.cpp
generating dependency information for ../../source/common/uniset_closure.cpp
generating dependency information for ../../source/common/uniset_props.cpp
generating dependency information for ../../source/common/uset_props.cpp
generating dependency information for ../../source/common/unisetspan.cpp
generating dependency information for ../../source/common/bmpset.cpp
generating dependency information for ../../source/common/utrie2_builder.cpp
generating dependency information for ../../source/common/utrie2.cpp
generating dependency information for ../../source/common/utrie.cpp
generating dependency information for ../../source/common/unames.cpp
generating dependency information for ../../source/common/usc_impl.c
generating dependency information for ../../source/common/uscript.c
generating dependency information for ../../source/common/ushape.cpp
generating dependency information for ../../source/common/ubidiln.c
generating dependency information for ../../source/common/ubidiwrt.c
generating dependency information for ../../source/common/ubidi.c
generating dependency information for ../../source/common/ubidi_props.c
generating dependency information for ../../source/common/propname.cpp
generating dependency information for ../../source/common/ucase.cpp
generating dependency information for ../../source/common/uprops.cpp
generating dependency information for ../../source/common/uchar.c
generating dependency information for ../../source/common/patternprops.cpp
generating dependency information for ../../source/common/uiter.cpp
generating dependency information for ../../source/common/uchriter.cpp
generating dependency information for ../../source/common/schriter.cpp
generating dependency information for ../../source/common/chariter.cpp
generating dependency information for ../../source/common/unorm_it.c
generating dependency information for ../../source/common/unormcmp.cpp
generating dependency information for ../../source/common/unorm.cpp
generating dependency information for ../../source/common/normlzr.cpp
generating dependency information for ../../source/common/filterednormalizer2.cpp
generating dependency information for ../../source/common/normalizer2.cpp
generating dependency information for ../../source/common/normalizer2impl.cpp
generating dependency information for ../../source/common/ustr_titlecase_brkiter.cpp
generating dependency information for ../../source/common/unistr_titlecase_brkiter.cpp
generating dependency information for ../../source/common/ustrcase_locale.cpp
generating dependency information for ../../source/common/unistr_case_locale.cpp
generating dependency information for ../../source/common/utext.cpp
generating dependency information for ../../source/common/ustr_wcs.cpp
generating dependency information for ../../source/common/ustrtrns.cpp
generating dependency information for ../../source/common/ustrfmt.c
generating dependency information for ../../source/common/cstring.c
generating dependency information for ../../source/common/ucasemap_titlecase_brkiter.cpp
generating dependency information for ../../source/common/ucasemap.cpp
generating dependency information for ../../source/common/ustrcase.cpp
generating dependency information for ../../source/common/ustring.cpp
generating dependency information for ../../source/common/utf_impl.c
generating dependency information for ../../source/common/unistr_props.cpp
generating dependency information for ../../source/common/unistr_case.cpp
generating dependency information for ../../source/common/unistr.cpp
generating dependency information for ../../source/common/unistr_cnv.cpp
generating dependency information for ../../source/common/ustr_cnv.c
generating dependency information for ../../source/common/appendable.cpp
generating dependency information for ../../source/common/ucharstrieiterator.cpp
generating dependency information for ../../source/common/ucharstriebuilder.cpp
generating dependency information for ../../source/common/ucharstrie.cpp
generating dependency information for ../../source/common/bytestrieiterator.cpp
generating dependency information for ../../source/common/bytestrie.cpp
generating dependency information for ../../source/common/bytestriebuilder.cpp
generating dependency information for ../../source/common/stringtriebuilder.cpp
generating dependency information for ../../source/common/stringpiece.cpp
generating dependency information for ../../source/common/bytestream.cpp
generating dependency information for ../../source/common/locresdata.cpp
generating dependency information for ../../source/common/loclikely.cpp
generating dependency information for ../../source/common/locdispnames.cpp
generating dependency information for ../../source/common/locavailable.cpp
generating dependency information for ../../source/common/locutil.cpp
generating dependency information for ../../source/common/locid.cpp
generating dependency information for ../../source/common/uloc.cpp
generating dependency information for ../../source/common/locmap.c
generating dependency information for ../../source/common/ucat.c
generating dependency information for ../../source/common/messagepattern.cpp
generating dependency information for ../../source/common/resbund_cnv.cpp
generating dependency information for ../../source/common/resbund.cpp
generating dependency information for ../../source/common/uresdata.c
generating dependency information for ../../source/common/ures_cnv.c
generating dependency information for ../../source/common/uresbund.cpp
generating dependency information for ../../source/common/ucnv_ct.c
generating dependency information for ../../source/common/ucnv_set.c
generating dependency information for ../../source/common/ucnvdisp.c
generating dependency information for ../../source/common/ucnvisci.c
generating dependency information for ../../source/common/ucnv_lmb.c
generating dependency information for ../../source/common/ucnvhz.c
generating dependency information for ../../source/common/ucnv2022.cpp
generating dependency information for ../../source/common/ucnvmbcs.c
generating dependency information for ../../source/common/ucnv_ext.cpp
generating dependency information for ../../source/common/ucnvbocu.cpp
generating dependency information for ../../source/common/ucnvscsu.c
generating dependency information for ../../source/common/ucnv_u32.c
generating dependency information for ../../source/common/ucnv_u16.c
generating dependency information for ../../source/common/ucnv_u8.c
generating dependency information for ../../source/common/ucnv_u7.c
generating dependency information for ../../source/common/ucnvlat1.c
generating dependency information for ../../source/common/ucnv_err.c
generating dependency information for ../../source/common/ucnv_cb.c
generating dependency information for ../../source/common/ucnv_io.cpp
generating dependency information for ../../source/common/ucnv_cnv.c
generating dependency information for ../../source/common/ucnv_bld.cpp
generating dependency information for ../../source/common/ucnv.c
generating dependency information for ../../source/common/uvectr64.cpp
generating dependency information for ../../source/common/uvectr32.cpp
generating dependency information for ../../source/common/ustack.cpp
generating dependency information for ../../source/common/uvector.cpp
generating dependency information for ../../source/common/ustrenum.cpp
generating dependency information for ../../source/common/uenum.c
generating dependency information for ../../source/common/uhash_us.cpp
generating dependency information for ../../source/common/uhash.c
generating dependency information for ../../source/common/utrace.c
generating dependency information for ../../source/common/ucol_swp.cpp
generating dependency information for ../../source/common/udataswp.c
generating dependency information for ../../source/common/umapfile.c
generating dependency information for ../../source/common/udatamem.c
generating dependency information for ../../source/common/ucmndata.c
generating dependency information for ../../source/common/udata.cpp
generating dependency information for ../../source/common/charstr.cpp
generating dependency information for ../../source/common/cmemory.c
generating dependency information for ../../source/common/uobject.cpp
generating dependency information for ../../source/common/uinit.c
generating dependency information for ../../source/common/ucln_cmn.c
generating dependency information for ../../source/common/umutex.c
generating dependency information for ../../source/common/uinvchar.c
generating dependency information for ../../source/common/utypes.c
generating dependency information for ../../source/common/umath.c
generating dependency information for ../../source/common/putil.cpp
generating dependency information for ../../source/common/errorcode.cpp
generating ../common/svchook.mk
cd .. \
&& CONFIG_FILES=common/Makefile CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating common/Makefile
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o errorcode.o ../../source/common/errorcode.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o putil.o ../../source/common/putil.cpp
../../source/common/putil.cpp:1450: warning: 'const char* uprv_getPOSIXIDForDefaultCodepage()' defined but not used
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o umath.o ../../source/common/umath.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utypes.o ../../source/common/utypes.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uinvchar.o ../../source/common/uinvchar.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o umutex.o ../../source/common/umutex.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucln_cmn.o ../../source/common/ucln_cmn.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uinit.o ../../source/common/uinit.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uobject.o ../../source/common/uobject.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o cmemory.o ../../source/common/cmemory.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o charstr.o ../../source/common/charstr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udata.o ../../source/common/udata.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucmndata.o ../../source/common/ucmndata.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udatamem.o ../../source/common/udatamem.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o umapfile.o ../../source/common/umapfile.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udataswp.o ../../source/common/udataswp.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_swp.o ../../source/common/ucol_swp.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utrace.o ../../source/common/utrace.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uhash.o ../../source/common/uhash.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uhash_us.o ../../source/common/uhash_us.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uenum.o ../../source/common/uenum.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustrenum.o ../../source/common/ustrenum.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uvector.o ../../source/common/uvector.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustack.o ../../source/common/ustack.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uvectr32.o ../../source/common/uvectr32.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uvectr64.o ../../source/common/uvectr64.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv.o ../../source/common/ucnv.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_bld.o ../../source/common/ucnv_bld.cpp
../../source/common/ucnv_bld.cpp:1305: warning: unused parameter 'converterName'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_cnv.o ../../source/common/ucnv_cnv.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_io.o ../../source/common/ucnv_io.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_cb.o ../../source/common/ucnv_cb.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_err.o ../../source/common/ucnv_err.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvlat1.o ../../source/common/ucnvlat1.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_u7.o ../../source/common/ucnv_u7.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_u8.o ../../source/common/ucnv_u8.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_u16.o ../../source/common/ucnv_u16.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_u32.o ../../source/common/ucnv_u32.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvscsu.o ../../source/common/ucnvscsu.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvbocu.o ../../source/common/ucnvbocu.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_ext.o ../../source/common/ucnv_ext.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvmbcs.o ../../source/common/ucnvmbcs.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv2022.o ../../source/common/ucnv2022.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvhz.o ../../source/common/ucnvhz.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_lmb.o ../../source/common/ucnv_lmb.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvisci.o ../../source/common/ucnvisci.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvdisp.o ../../source/common/ucnvdisp.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_set.o ../../source/common/ucnv_set.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnv_ct.o ../../source/common/ucnv_ct.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uresbund.o ../../source/common/uresbund.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ures_cnv.o ../../source/common/ures_cnv.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uresdata.o ../../source/common/uresdata.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o resbund.o ../../source/common/resbund.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o resbund_cnv.o ../../source/common/resbund_cnv.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o messagepattern.o ../../source/common/messagepattern.cpp
../../source/common/messagepattern.cpp: In copy constructor 'icu::MessagePattern::MessagePattern(const icu::MessagePattern&)':
../../source/common/messagepattern.cpp:177: warning: base class 'class icu::UObject' should be explicitly initialized in the copy constructor
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucat.o ../../source/common/ucat.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locmap.o ../../source/common/locmap.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uloc.o ../../source/common/uloc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locid.o ../../source/common/locid.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locutil.o ../../source/common/locutil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locavailable.o ../../source/common/locavailable.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locdispnames.o ../../source/common/locdispnames.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o loclikely.o ../../source/common/loclikely.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locresdata.o ../../source/common/locresdata.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bytestream.o ../../source/common/bytestream.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o stringpiece.o ../../source/common/stringpiece.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o stringtriebuilder.o ../../source/common/stringtriebuilder.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bytestriebuilder.o ../../source/common/bytestriebuilder.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bytestrie.o ../../source/common/bytestrie.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bytestrieiterator.o ../../source/common/bytestrieiterator.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucharstrie.o ../../source/common/ucharstrie.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucharstriebuilder.o ../../source/common/ucharstriebuilder.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucharstrieiterator.o ../../source/common/ucharstrieiterator.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o appendable.o ../../source/common/appendable.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustr_cnv.o ../../source/common/ustr_cnv.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr_cnv.o ../../source/common/unistr_cnv.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr.o ../../source/common/unistr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr_case.o ../../source/common/unistr_case.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr_props.o ../../source/common/unistr_props.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utf_impl.o ../../source/common/utf_impl.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustring.o ../../source/common/ustring.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustrcase.o ../../source/common/ustrcase.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucasemap.o ../../source/common/ucasemap.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucasemap_titlecase_brkiter.o ../../source/common/ucasemap_titlecase_brkiter.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o cstring.o ../../source/common/cstring.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustrfmt.o ../../source/common/ustrfmt.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustrtrns.o ../../source/common/ustrtrns.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustr_wcs.o ../../source/common/ustr_wcs.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utext.o ../../source/common/utext.cpp
../../source/common/utext.cpp: In function 'UText* shallowTextClone(UText*, const UText*, UErrorCode*)':
../../source/common/utext.cpp:807: warning: dereferencing type-punned pointer will break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr_case_locale.o ../../source/common/unistr_case_locale.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustrcase_locale.o ../../source/common/ustrcase_locale.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unistr_titlecase_brkiter.o ../../source/common/unistr_titlecase_brkiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustr_titlecase_brkiter.o ../../source/common/ustr_titlecase_brkiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o normalizer2impl.o ../../source/common/normalizer2impl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o normalizer2.o ../../source/common/normalizer2.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o filterednormalizer2.o ../../source/common/filterednormalizer2.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o normlzr.o ../../source/common/normlzr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unorm.o ../../source/common/unorm.cpp
../../source/common/unorm.cpp: In function 'UNormalizationCheckResult unorm_quickCheckWithOptions(const UChar*, int32_t, UNormalizationMode, int32_t, UErrorCode*)':
../../source/common/unorm.cpp:63: warning: type-punning to incomplete type might break strict-aliasing rules
../../source/common/unorm.cpp: In function 'UBool unorm_isNormalizedWithOptions(const UChar*, int32_t, UNormalizationMode, int32_t, UErrorCode*)':
../../source/common/unorm.cpp:86: warning: type-punning to incomplete type might break strict-aliasing rules
../../source/common/unorm.cpp: In function 'int32_t unorm_normalize(const UChar*, int32_t, UNormalizationMode, int32_t, UChar*, int32_t, UErrorCode*)':
../../source/common/unorm.cpp:105: warning: type-punning to incomplete type might break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unormcmp.o ../../source/common/unormcmp.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unorm_it.o ../../source/common/unorm_it.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o chariter.o ../../source/common/chariter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o schriter.o ../../source/common/schriter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uchriter.o ../../source/common/uchriter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uiter.o ../../source/common/uiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o patternprops.o ../../source/common/patternprops.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uchar.o ../../source/common/uchar.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uprops.o ../../source/common/uprops.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucase.o ../../source/common/ucase.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o propname.o ../../source/common/propname.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ubidi_props.o ../../source/common/ubidi_props.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ubidi.o ../../source/common/ubidi.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ubidiwrt.o ../../source/common/ubidiwrt.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ubidiln.o ../../source/common/ubidiln.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ushape.o ../../source/common/ushape.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uscript.o ../../source/common/uscript.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o usc_impl.o ../../source/common/usc_impl.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unames.o ../../source/common/unames.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utrie.o ../../source/common/utrie.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utrie2.o ../../source/common/utrie2.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utrie2_builder.o ../../source/common/utrie2_builder.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bmpset.o ../../source/common/bmpset.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unisetspan.o ../../source/common/unisetspan.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uset_props.o ../../source/common/uset_props.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uniset_props.o ../../source/common/uniset_props.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uniset_closure.o ../../source/common/uniset_closure.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uset.o ../../source/common/uset.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uniset.o ../../source/common/uniset.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o usetiter.o ../../source/common/usetiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ruleiter.o ../../source/common/ruleiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o caniter.o ../../source/common/caniter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unifilt.o ../../source/common/unifilt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unifunct.o ../../source/common/unifunct.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uarrsort.o ../../source/common/uarrsort.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o brkiter.o ../../source/common/brkiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ubrk.o ../../source/common/ubrk.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o brkeng.o ../../source/common/brkeng.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dictbe.o ../../source/common/dictbe.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o triedict.o ../../source/common/triedict.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbi.o ../../source/common/rbbi.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbidata.o ../../source/common/rbbidata.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbinode.o ../../source/common/rbbinode.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbirb.o ../../source/common/rbbirb.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbiscan.o ../../source/common/rbbiscan.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbisetb.o ../../source/common/rbbisetb.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbistbl.o ../../source/common/rbbistbl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbbitblb.o ../../source/common/rbbitblb.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o serv.o ../../source/common/serv.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servnotf.o ../../source/common/servnotf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servls.o ../../source/common/servls.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servlk.o ../../source/common/servlk.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servlkf.o ../../source/common/servlkf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servrbf.o ../../source/common/servrbf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o servslkf.o ../../source/common/servslkf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uidna.o ../../source/common/uidna.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o usprep.o ../../source/common/usprep.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uts46.o ../../source/common/uts46.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o punycode.o ../../source/common/punycode.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o util.o ../../source/common/util.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o util_props.o ../../source/common/util_props.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o parsepos.o ../../source/common/parsepos.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locbased.o ../../source/common/locbased.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o cwchar.o ../../source/common/cwchar.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o wintz.o ../../source/common/wintz.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o mutex.o ../../source/common/mutex.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtintrv.o ../../source/common/dtintrv.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucnvsel.o ../../source/common/ucnvsel.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o propsvec.o ../../source/common/propsvec.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ulist.o ../../source/common/ulist.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uloc_tag.o ../../source/common/uloc_tag.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o icudataver.o ../../source/common/icudataver.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common "-DDEFAULT_ICU_PLUGINS=\"/opt/schplurtz/lib/icu\" " -DU_ATTRIBUTE_DEPRECATED= -DU_COMMON_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o icuplug.o ../../source/common/icuplug.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicuuc.so.49 -o ../lib/libicuuc.so.49.1.2 errorcode.o putil.o umath.o utypes.o uinvchar.o umutex.o ucln_cmn.o uinit.o uobject.o cmemory.o charstr.o udata.o ucmndata.o udatamem.o umapfile.o udataswp.o ucol_swp.o utrace.o uhash.o uhash_us.o uenum.o ustrenum.o uvector.o ustack.o uvectr32.o uvectr64.o ucnv.o ucnv_bld.o ucnv_cnv.o ucnv_io.o ucnv_cb.o ucnv_err.o ucnvlat1.o ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o ucnvscsu.o ucnvbocu.o ucnv_ext.o ucnvmbcs.o ucnv2022.o ucnvhz.o ucnv_lmb.o ucnvisci.o ucnvdisp.o ucnv_set.o ucnv_ct.o uresbund.o ures_cnv.o uresdata.o resbund.o resbund_cnv.o messagepattern.o ucat.o locmap.o uloc.o locid.o locutil.o locavailable.o locdispnames.o loclikely.o locresdata.o bytestream.o stringpiece.o stringtriebuilder.o bytestriebuilder.o bytestrie.o bytestrieiterator.o ucharstrie.o ucharstriebuilder.o ucharstrieiterator.o appendable.o ustr_cnv.o unistr_cnv.o unistr.o unistr_case.o unistr_props.o utf_impl.o ustring.o ustrcase.o ucasemap.o ucasemap_titlecase_brkiter.o cstring.o ustrfmt.o ustrtrns.o ustr_wcs.o utext.o unistr_case_locale.o ustrcase_locale.o unistr_titlecase_brkiter.o ustr_titlecase_brkiter.o normalizer2impl.o normalizer2.o filterednormalizer2.o normlzr.o unorm.o unormcmp.o unorm_it.o chariter.o schriter.o uchriter.o uiter.o patternprops.o uchar.o uprops.o ucase.o propname.o ubidi_props.o ubidi.o ubidiwrt.o ubidiln.o ushape.o uscript.o usc_impl.o unames.o utrie.o utrie2.o utrie2_builder.o bmpset.o unisetspan.o uset_props.o uniset_props.o uniset_closure.o uset.o uniset.o usetiter.o ruleiter.o caniter.o unifilt.o unifunct.o uarrsort.o brkiter.o ubrk.o brkeng.o dictbe.o triedict.o rbbi.o rbbidata.o rbbinode.o rbbirb.o rbbiscan.o rbbisetb.o rbbistbl.o rbbitblb.o serv.o servnotf.o servls.o servlk.o servlkf.o servrbf.o servslkf.o uidna.o usprep.o uts46.o punycode.o util.o util_props.o parsepos.o locbased.o cwchar.o wintz.o mutex.o dtintrv.o ucnvsel.o propsvec.o ulist.o uloc_tag.o icudataver.o icuplug.o /opt/schplurtz/lib/linux-atomic.o -L../lib -L../stubdata -licudata -lpthread -ldl -lm
rm -f ../lib/libicuuc.so.49 && ln -s libicuuc.so.49.1.2 ../lib/libicuuc.so.49
rm -f ../lib/libicuuc.so && ln -s libicuuc.so.49.1.2 ../lib/libicuuc.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[0]: Making `all' in `i18n'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
generating dependency information for ../../source/i18n/tzfmt.cpp
generating dependency information for ../../source/i18n/tzgnames.cpp
generating dependency information for ../../source/i18n/tznames_impl.cpp
generating dependency information for ../../source/i18n/tznames.cpp
generating dependency information for ../../source/i18n/alphaindex.cpp
generating dependency information for ../../source/i18n/decContext.c
generating dependency information for ../../source/i18n/decNumber.c
generating dependency information for ../../source/i18n/locdspnm.cpp
generating dependency information for ../../source/i18n/fpositer.cpp
generating dependency information for ../../source/i18n/fphdlimp.cpp
generating dependency information for ../../source/i18n/vzone.cpp
generating dependency information for ../../source/i18n/zrule.cpp
generating dependency information for ../../source/i18n/ztrans.cpp
generating dependency information for ../../source/i18n/smpdtfst.cpp
generating dependency information for ../../source/i18n/decfmtst.cpp
generating dependency information for ../../source/i18n/uspoof_wsconf.cpp
generating dependency information for ../../source/i18n/uspoof_conf.cpp
generating dependency information for ../../source/i18n/uspoof_build.cpp
generating dependency information for ../../source/i18n/uspoof_impl.cpp
generating dependency information for ../../source/i18n/uspoof.cpp
generating dependency information for ../../source/i18n/currpinf.cpp
generating dependency information for ../../source/i18n/bms.cpp
generating dependency information for ../../source/i18n/bmsearch.cpp
generating dependency information for ../../source/i18n/colldata.cpp
generating dependency information for ../../source/i18n/tmutfmt.cpp
generating dependency information for ../../source/i18n/tmutamt.cpp
generating dependency information for ../../source/i18n/tmunit.cpp
generating dependency information for ../../source/i18n/udateintervalformat.cpp
generating dependency information for ../../source/i18n/dtitvinf.cpp
generating dependency information for ../../source/i18n/dtitvfmt.cpp
generating dependency information for ../../source/i18n/selfmt.cpp
generating dependency information for ../../source/i18n/plurfmt.cpp
generating dependency information for ../../source/i18n/plurrule.cpp
generating dependency information for ../../source/i18n/upluralrules.cpp
generating dependency information for ../../source/i18n/zonemeta.cpp
generating dependency information for ../../source/i18n/vtzone.cpp
generating dependency information for ../../source/i18n/tztrans.cpp
generating dependency information for ../../source/i18n/tzrule.cpp
generating dependency information for ../../source/i18n/rbtz.cpp
generating dependency information for ../../source/i18n/dtrule.cpp
generating dependency information for ../../source/i18n/basictz.cpp
generating dependency information for ../../source/i18n/winnmfmt.cpp
generating dependency information for ../../source/i18n/windtfmt.cpp
generating dependency information for ../../source/i18n/wintzimpl.cpp
generating dependency information for ../../source/i18n/inputext.cpp
generating dependency information for ../../source/i18n/csrutf8.cpp
generating dependency information for ../../source/i18n/csrucode.cpp
generating dependency information for ../../source/i18n/csrsbcs.cpp
generating dependency information for ../../source/i18n/csrmbcs.cpp
generating dependency information for ../../source/i18n/csrecog.cpp
generating dependency information for ../../source/i18n/csr2022.cpp
generating dependency information for ../../source/i18n/csmatch.cpp
generating dependency information for ../../source/i18n/csdetect.cpp
generating dependency information for ../../source/i18n/utmscale.c
generating dependency information for ../../source/i18n/measure.cpp
generating dependency information for ../../source/i18n/currunit.cpp
generating dependency information for ../../source/i18n/curramt.cpp
generating dependency information for ../../source/i18n/currfmt.cpp
generating dependency information for ../../source/i18n/measfmt.cpp
generating dependency information for ../../source/i18n/ulocdata.c
generating dependency information for ../../source/i18n/uregexc.cpp
generating dependency information for ../../source/i18n/uregex.cpp
generating dependency information for ../../source/i18n/regeximp.cpp
generating dependency information for ../../source/i18n/regextxt.cpp
generating dependency information for ../../source/i18n/regexst.cpp
generating dependency information for ../../source/i18n/repattrn.cpp
generating dependency information for ../../source/i18n/rematch.cpp
generating dependency information for ../../source/i18n/regexcmp.cpp
generating dependency information for ../../source/i18n/brktrans.cpp
generating dependency information for ../../source/i18n/transreg.cpp
generating dependency information for ../../source/i18n/quant.cpp
generating dependency information for ../../source/i18n/nortrans.cpp
generating dependency information for ../../source/i18n/uni2name.cpp
generating dependency information for ../../source/i18n/name2uni.cpp
generating dependency information for ../../source/i18n/anytrans.cpp
generating dependency information for ../../source/i18n/toupptrn.cpp
generating dependency information for ../../source/i18n/tolowtrn.cpp
generating dependency information for ../../source/i18n/titletrn.cpp
generating dependency information for ../../source/i18n/casetrn.cpp
generating dependency information for ../../source/i18n/remtrans.cpp
generating dependency information for ../../source/i18n/nultrans.cpp
generating dependency information for ../../source/i18n/rbt_set.cpp
generating dependency information for ../../source/i18n/rbt_rule.cpp
generating dependency information for ../../source/i18n/rbt_pars.cpp
generating dependency information for ../../source/i18n/rbt_data.cpp
generating dependency information for ../../source/i18n/rbt.cpp
generating dependency information for ../../source/i18n/cpdtrans.cpp
generating dependency information for ../../source/i18n/tridpars.cpp
generating dependency information for ../../source/i18n/strrepl.cpp
generating dependency information for ../../source/i18n/funcrepl.cpp
generating dependency information for ../../source/i18n/unesctrn.cpp
generating dependency information for ../../source/i18n/esctrn.cpp
generating dependency information for ../../source/i18n/utrans.cpp
generating dependency information for ../../source/i18n/translit.cpp
generating dependency information for ../../source/i18n/stsearch.cpp
generating dependency information for ../../source/i18n/search.cpp
generating dependency information for ../../source/i18n/usearch.cpp
generating dependency information for ../../source/i18n/strmatch.cpp
generating dependency information for ../../source/i18n/ucol_elm.cpp
generating dependency information for ../../source/i18n/ucol_cnt.cpp
generating dependency information for ../../source/i18n/ucol_wgt.cpp
generating dependency information for ../../source/i18n/ucol_tok.cpp
generating dependency information for ../../source/i18n/ucol_sit.cpp
generating dependency information for ../../source/i18n/ucol_bld.cpp
generating dependency information for ../../source/i18n/ucol_res.cpp
generating dependency information for ../../source/i18n/ucol.cpp
generating dependency information for ../../source/i18n/ucoleitr.cpp
generating dependency information for ../../source/i18n/bocsu.cpp
generating dependency information for ../../source/i18n/sortkey.cpp
generating dependency information for ../../source/i18n/tblcoll.cpp
generating dependency information for ../../source/i18n/coll.cpp
generating dependency information for ../../source/i18n/coleitr.cpp
generating dependency information for ../../source/i18n/ethpccal.cpp
generating dependency information for ../../source/i18n/coptccal.cpp
generating dependency information for ../../source/i18n/cecal.cpp
generating dependency information for ../../source/i18n/chnsecal.cpp
generating dependency information for ../../source/i18n/indiancal.cpp
generating dependency information for ../../source/i18n/hebrwcal.cpp
generating dependency information for ../../source/i18n/gregoimp.cpp
generating dependency information for ../../source/i18n/japancal.cpp
generating dependency information for ../../source/i18n/islamcal.cpp
generating dependency information for ../../source/i18n/persncal.cpp
generating dependency information for ../../source/i18n/buddhcal.cpp
generating dependency information for ../../source/i18n/taiwncal.cpp
generating dependency information for ../../source/i18n/astro.cpp
generating dependency information for ../../source/i18n/olsontz.cpp
generating dependency information for ../../source/i18n/simpletz.cpp
generating dependency information for ../../source/i18n/timezone.cpp
generating dependency information for ../../source/i18n/gregocal.cpp
generating dependency information for ../../source/i18n/calendar.cpp
generating dependency information for ../../source/i18n/ucal.cpp
generating dependency information for ../../source/i18n/ucsdet.cpp
generating dependency information for ../../source/i18n/numsys.cpp
generating dependency information for ../../source/i18n/rbnf.cpp
generating dependency information for ../../source/i18n/nfsubs.cpp
generating dependency information for ../../source/i18n/nfrule.cpp
generating dependency information for ../../source/i18n/nfrs.cpp
generating dependency information for ../../source/i18n/udatpg.cpp
generating dependency information for ../../source/i18n/dtptngen.cpp
generating dependency information for ../../source/i18n/udat.cpp
generating dependency information for ../../source/i18n/dtfmtsym.cpp
generating dependency information for ../../source/i18n/reldtfmt.cpp
generating dependency information for ../../source/i18n/smpdtfmt.cpp
generating dependency information for ../../source/i18n/datefmt.cpp
generating dependency information for ../../source/i18n/choicfmt.cpp
generating dependency information for ../../source/i18n/fmtable_cnv.cpp
generating dependency information for ../../source/i18n/digitlst.cpp
generating dependency information for ../../source/i18n/ucurr.cpp
generating dependency information for ../../source/i18n/dcfmtsym.cpp
generating dependency information for ../../source/i18n/decimfmt.cpp
generating dependency information for ../../source/i18n/unum.cpp
generating dependency information for ../../source/i18n/numfmt.cpp
generating dependency information for ../../source/i18n/umsg.cpp
generating dependency information for ../../source/i18n/msgfmt.cpp
generating dependency information for ../../source/i18n/format.cpp
generating dependency information for ../../source/i18n/fmtable.cpp
generating dependency information for ../../source/i18n/ucln_in.c
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucln_in.o ../../source/i18n/ucln_in.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o fmtable.o ../../source/i18n/fmtable.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o format.o ../../source/i18n/format.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o msgfmt.o ../../source/i18n/msgfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o umsg.o ../../source/i18n/umsg.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o numfmt.o ../../source/i18n/numfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unum.o ../../source/i18n/unum.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o decimfmt.o ../../source/i18n/decimfmt.cpp
../../source/i18n/decimfmt.cpp: In static member function 'static int32_t icu::DecimalFormat::compareSimpleAffix(const icu::UnicodeString&, const icu::UnicodeString&, int32_t, UBool)':
../../source/i18n/decimfmt.cpp:2673: warning: unused variable 'status'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dcfmtsym.o ../../source/i18n/dcfmtsym.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucurr.o ../../source/i18n/ucurr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o digitlst.o ../../source/i18n/digitlst.cpp
../../source/i18n/digitlst.cpp:924: warning: unused parameter 'size'
../../source/i18n/digitlst.cpp:924: warning: unused parameter 'mode'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o fmtable_cnv.o ../../source/i18n/fmtable_cnv.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o choicfmt.o ../../source/i18n/choicfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o datefmt.o ../../source/i18n/datefmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o smpdtfmt.o ../../source/i18n/smpdtfmt.cpp
../../source/i18n/smpdtfmt.cpp: In member function 'int32_t icu::SimpleDateFormat::subParse(const icu::UnicodeString&, int32_t&, UChar, int32_t, UBool, UBool, UBool*, int32_t&, icu::Calendar&, int32_t, icu::MessageFormat*) const':
../../source/i18n/smpdtfmt.cpp:2347: warning: dereferencing type-punned pointer will break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o reldtfmt.o ../../source/i18n/reldtfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtfmtsym.o ../../source/i18n/dtfmtsym.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udat.o ../../source/i18n/udat.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtptngen.o ../../source/i18n/dtptngen.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udatpg.o ../../source/i18n/udatpg.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o nfrs.o ../../source/i18n/nfrs.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o nfrule.o ../../source/i18n/nfrule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o nfsubs.o ../../source/i18n/nfsubs.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbnf.o ../../source/i18n/rbnf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o numsys.o ../../source/i18n/numsys.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucsdet.o ../../source/i18n/ucsdet.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucal.o ../../source/i18n/ucal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o calendar.o ../../source/i18n/calendar.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o gregocal.o ../../source/i18n/gregocal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o timezone.o ../../source/i18n/timezone.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o simpletz.o ../../source/i18n/simpletz.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o olsontz.o ../../source/i18n/olsontz.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o astro.o ../../source/i18n/astro.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o taiwncal.o ../../source/i18n/taiwncal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o buddhcal.o ../../source/i18n/buddhcal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o persncal.o ../../source/i18n/persncal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o islamcal.o ../../source/i18n/islamcal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o japancal.o ../../source/i18n/japancal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o gregoimp.o ../../source/i18n/gregoimp.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o hebrwcal.o ../../source/i18n/hebrwcal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o indiancal.o ../../source/i18n/indiancal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o chnsecal.o ../../source/i18n/chnsecal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o cecal.o ../../source/i18n/cecal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o coptccal.o ../../source/i18n/coptccal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ethpccal.o ../../source/i18n/ethpccal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o coleitr.o ../../source/i18n/coleitr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o coll.o ../../source/i18n/coll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tblcoll.o ../../source/i18n/tblcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o sortkey.o ../../source/i18n/sortkey.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bocsu.o ../../source/i18n/bocsu.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucoleitr.o ../../source/i18n/ucoleitr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol.o ../../source/i18n/ucol.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_res.o ../../source/i18n/ucol_res.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_bld.o ../../source/i18n/ucol_bld.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_sit.o ../../source/i18n/ucol_sit.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_tok.o ../../source/i18n/ucol_tok.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_wgt.o ../../source/i18n/ucol_wgt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_cnt.o ../../source/i18n/ucol_cnt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucol_elm.o ../../source/i18n/ucol_elm.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o strmatch.o ../../source/i18n/strmatch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o usearch.o ../../source/i18n/usearch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o search.o ../../source/i18n/search.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o stsearch.o ../../source/i18n/stsearch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o translit.o ../../source/i18n/translit.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utrans.o ../../source/i18n/utrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o esctrn.o ../../source/i18n/esctrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unesctrn.o ../../source/i18n/unesctrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o funcrepl.o ../../source/i18n/funcrepl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o strrepl.o ../../source/i18n/strrepl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tridpars.o ../../source/i18n/tridpars.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o cpdtrans.o ../../source/i18n/cpdtrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbt.o ../../source/i18n/rbt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbt_data.o ../../source/i18n/rbt_data.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbt_pars.o ../../source/i18n/rbt_pars.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbt_rule.o ../../source/i18n/rbt_rule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbt_set.o ../../source/i18n/rbt_set.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o nultrans.o ../../source/i18n/nultrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o remtrans.o ../../source/i18n/remtrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o casetrn.o ../../source/i18n/casetrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o titletrn.o ../../source/i18n/titletrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tolowtrn.o ../../source/i18n/tolowtrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o toupptrn.o ../../source/i18n/toupptrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o anytrans.o ../../source/i18n/anytrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o name2uni.o ../../source/i18n/name2uni.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uni2name.o ../../source/i18n/uni2name.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o nortrans.o ../../source/i18n/nortrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o quant.o ../../source/i18n/quant.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o transreg.o ../../source/i18n/transreg.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o brktrans.o ../../source/i18n/brktrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o regexcmp.o ../../source/i18n/regexcmp.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rematch.o ../../source/i18n/rematch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o repattrn.o ../../source/i18n/repattrn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o regexst.o ../../source/i18n/regexst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o regextxt.o ../../source/i18n/regextxt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o regeximp.o ../../source/i18n/regeximp.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uregex.o ../../source/i18n/uregex.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uregexc.o ../../source/i18n/uregexc.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ulocdata.o ../../source/i18n/ulocdata.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o measfmt.o ../../source/i18n/measfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o currfmt.o ../../source/i18n/currfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o curramt.o ../../source/i18n/curramt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o currunit.o ../../source/i18n/currunit.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o measure.o ../../source/i18n/measure.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o utmscale.o ../../source/i18n/utmscale.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csdetect.o ../../source/i18n/csdetect.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csmatch.o ../../source/i18n/csmatch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csr2022.o ../../source/i18n/csr2022.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csrecog.o ../../source/i18n/csrecog.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csrmbcs.o ../../source/i18n/csrmbcs.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csrsbcs.o ../../source/i18n/csrsbcs.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csrucode.o ../../source/i18n/csrucode.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o csrutf8.o ../../source/i18n/csrutf8.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o inputext.o ../../source/i18n/inputext.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o wintzimpl.o ../../source/i18n/wintzimpl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o windtfmt.o ../../source/i18n/windtfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o winnmfmt.o ../../source/i18n/winnmfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o basictz.o ../../source/i18n/basictz.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtrule.o ../../source/i18n/dtrule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o rbtz.o ../../source/i18n/rbtz.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tzrule.o ../../source/i18n/tzrule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tztrans.o ../../source/i18n/tztrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o vtzone.o ../../source/i18n/vtzone.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o zonemeta.o ../../source/i18n/zonemeta.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o upluralrules.o ../../source/i18n/upluralrules.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o plurrule.o ../../source/i18n/plurrule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o plurfmt.o ../../source/i18n/plurfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o selfmt.o ../../source/i18n/selfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtitvfmt.o ../../source/i18n/dtitvfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dtitvinf.o ../../source/i18n/dtitvinf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udateintervalformat.o ../../source/i18n/udateintervalformat.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tmunit.o ../../source/i18n/tmunit.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tmutamt.o ../../source/i18n/tmutamt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tmutfmt.o ../../source/i18n/tmutfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o colldata.o ../../source/i18n/colldata.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bmsearch.o ../../source/i18n/bmsearch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o bms.o ../../source/i18n/bms.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o currpinf.o ../../source/i18n/currpinf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uspoof.o ../../source/i18n/uspoof.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uspoof_impl.o ../../source/i18n/uspoof_impl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uspoof_build.o ../../source/i18n/uspoof_build.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uspoof_conf.o ../../source/i18n/uspoof_conf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uspoof_wsconf.o ../../source/i18n/uspoof_wsconf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o decfmtst.o ../../source/i18n/decfmtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o smpdtfst.o ../../source/i18n/smpdtfst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ztrans.o ../../source/i18n/ztrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o zrule.o ../../source/i18n/zrule.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o vzone.o ../../source/i18n/vzone.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o fphdlimp.o ../../source/i18n/fphdlimp.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o fpositer.o ../../source/i18n/fpositer.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locdspnm.o ../../source/i18n/locdspnm.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o decNumber.o ../../source/i18n/decNumber.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o decContext.o ../../source/i18n/decContext.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o alphaindex.o ../../source/i18n/alphaindex.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tznames.o ../../source/i18n/tznames.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tznames_impl.o ../../source/i18n/tznames_impl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tzgnames.o ../../source/i18n/tzgnames.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/i18n -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_I18N_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tzfmt.o ../../source/i18n/tzfmt.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicui18n.so.49 -o ../lib/libicui18n.so.49.1.2 ucln_in.o fmtable.o format.o msgfmt.o umsg.o numfmt.o unum.o decimfmt.o dcfmtsym.o ucurr.o digitlst.o fmtable_cnv.o choicfmt.o datefmt.o smpdtfmt.o reldtfmt.o dtfmtsym.o udat.o dtptngen.o udatpg.o nfrs.o nfrule.o nfsubs.o rbnf.o numsys.o ucsdet.o ucal.o calendar.o gregocal.o timezone.o simpletz.o olsontz.o astro.o taiwncal.o buddhcal.o persncal.o islamcal.o japancal.o gregoimp.o hebrwcal.o indiancal.o chnsecal.o cecal.o coptccal.o ethpccal.o coleitr.o coll.o tblcoll.o sortkey.o bocsu.o ucoleitr.o ucol.o ucol_res.o ucol_bld.o ucol_sit.o ucol_tok.o ucol_wgt.o ucol_cnt.o ucol_elm.o strmatch.o usearch.o search.o stsearch.o translit.o utrans.o esctrn.o unesctrn.o funcrepl.o strrepl.o tridpars.o cpdtrans.o rbt.o rbt_data.o rbt_pars.o rbt_rule.o rbt_set.o nultrans.o remtrans.o casetrn.o titletrn.o tolowtrn.o toupptrn.o anytrans.o name2uni.o uni2name.o nortrans.o quant.o transreg.o brktrans.o regexcmp.o rematch.o repattrn.o regexst.o regextxt.o regeximp.o uregex.o uregexc.o ulocdata.o measfmt.o currfmt.o curramt.o currunit.o measure.o utmscale.o csdetect.o csmatch.o csr2022.o csrecog.o csrmbcs.o csrsbcs.o csrucode.o csrutf8.o inputext.o wintzimpl.o windtfmt.o winnmfmt.o basictz.o dtrule.o rbtz.o tzrule.o tztrans.o vtzone.o zonemeta.o upluralrules.o plurrule.o plurfmt.o selfmt.o dtitvfmt.o dtitvinf.o udateintervalformat.o tmunit.o tmutamt.o tmutfmt.o colldata.o bmsearch.o bms.o currpinf.o uspoof.o uspoof_impl.o uspoof_build.o uspoof_conf.o uspoof_wsconf.o decfmtst.o smpdtfst.o ztrans.o zrule.o vzone.o fphdlimp.o fpositer.o locdspnm.o decNumber.o decContext.o alphaindex.o tznames.o tznames_impl.o tzgnames.o tzfmt.o -L../lib -licuuc -L../stubdata -licudata -lpthread -ldl -lm
rm -f ../lib/libicui18n.so.49 && ln -s libicui18n.so.49.1.2 ../lib/libicui18n.so.49
rm -f ../lib/libicui18n.so && ln -s libicui18n.so.49.1.2 ../lib/libicui18n.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[0]: Making `all' in `layout'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
generating dependency information for ../../source/layout/loengine.cpp
generating dependency information for ../../source/layout/KernTable.cpp
generating dependency information for ../../source/layout/HangulLayoutEngine.cpp
generating dependency information for ../../source/layout/TibetanReordering.cpp
generating dependency information for ../../source/layout/TibetanLayoutEngine.cpp
generating dependency information for ../../source/layout/KhmerReordering.cpp
generating dependency information for ../../source/layout/KhmerLayoutEngine.cpp
generating dependency information for ../../source/layout/ValueRecords.cpp
generating dependency information for ../../source/layout/SubstitutionLookups.cpp
generating dependency information for ../../source/layout/SingleSubstitutionSubtables.cpp
generating dependency information for ../../source/layout/SinglePositioningSubtables.cpp
generating dependency information for ../../source/layout/ShapingTypeData.cpp
generating dependency information for ../../source/layout/ScriptAndLanguageTags.cpp
generating dependency information for ../../source/layout/ScriptAndLanguage.cpp
generating dependency information for ../../source/layout/PairPositioningSubtables.cpp
generating dependency information for ../../source/layout/OpenTypeUtilities.cpp
generating dependency information for ../../source/layout/MultipleSubstSubtables.cpp
generating dependency information for ../../source/layout/MPreFixups.cpp
generating dependency information for ../../source/layout/MirroredCharData.cpp
generating dependency information for ../../source/layout/MarkToMarkPosnSubtables.cpp
generating dependency information for ../../source/layout/MarkToLigaturePosnSubtables.cpp
generating dependency information for ../../source/layout/MarkToBasePosnSubtables.cpp
generating dependency information for ../../source/layout/MarkArrays.cpp
generating dependency information for ../../source/layout/Lookups.cpp
generating dependency information for ../../source/layout/LookupProcessor.cpp
generating dependency information for ../../source/layout/LigatureSubstSubtables.cpp
generating dependency information for ../../source/layout/LEGlyphStorage.cpp
generating dependency information for ../../source/layout/LEInsertionList.cpp
generating dependency information for ../../source/layout/IndicReordering.cpp
generating dependency information for ../../source/layout/IndicClassTables.cpp
generating dependency information for ../../source/layout/GlyphSubstitutionTables.cpp
generating dependency information for ../../source/layout/GlyphSubstLookupProc.cpp
generating dependency information for ../../source/layout/GlyphPositioningTables.cpp
generating dependency information for ../../source/layout/GlyphPositionAdjustments.cpp
generating dependency information for ../../source/layout/GlyphPosnLookupProc.cpp
generating dependency information for ../../source/layout/GlyphLookupTables.cpp
generating dependency information for ../../source/layout/GlyphIterator.cpp
generating dependency information for ../../source/layout/GlyphDefinitionTables.cpp
generating dependency information for ../../source/layout/GDEFMarkFilter.cpp
generating dependency information for ../../source/layout/Features.cpp
generating dependency information for ../../source/layout/ExtensionSubtables.cpp
generating dependency information for ../../source/layout/DeviceTables.cpp
generating dependency information for ../../source/layout/CursiveAttachmentSubtables.cpp
generating dependency information for ../../source/layout/CoverageTables.cpp
generating dependency information for ../../source/layout/ContextualSubstSubtables.cpp
generating dependency information for ../../source/layout/ClassDefinitionTables.cpp
generating dependency information for ../../source/layout/CanonShaping.cpp
generating dependency information for ../../source/layout/CanonData.cpp
generating dependency information for ../../source/layout/ArabicShaping.cpp
generating dependency information for ../../source/layout/AnchorTables.cpp
generating dependency information for ../../source/layout/AlternateSubstSubtables.cpp
generating dependency information for ../../source/layout/TrimmedArrayProcessor.cpp
generating dependency information for ../../source/layout/SubtableProcessor.cpp
generating dependency information for ../../source/layout/StateTableProcessor.cpp
generating dependency information for ../../source/layout/SingleTableProcessor.cpp
generating dependency information for ../../source/layout/SimpleArrayProcessor.cpp
generating dependency information for ../../source/layout/SegmentSingleProcessor.cpp
generating dependency information for ../../source/layout/SegmentArrayProcessor.cpp
generating dependency information for ../../source/layout/NonContextualGlyphSubstProc.cpp
generating dependency information for ../../source/layout/MorphTables.cpp
generating dependency information for ../../source/layout/LookupTables.cpp
generating dependency information for ../../source/layout/LigatureSubstProc.cpp
generating dependency information for ../../source/layout/IndicRearrangementProcessor.cpp
generating dependency information for ../../source/layout/ContextualGlyphSubstProc.cpp
generating dependency information for ../../source/layout/LayoutEngine.cpp
generating dependency information for ../../source/layout/IndicLayoutEngine.cpp
generating dependency information for ../../source/layout/HanLayoutEngine.cpp
generating dependency information for ../../source/layout/GXLayoutEngine.cpp
generating dependency information for ../../source/layout/ArabicLayoutEngine.cpp
generating dependency information for ../../source/layout/ThaiStateTables.cpp
generating dependency information for ../../source/layout/ThaiShaping.cpp
generating dependency information for ../../source/layout/ThaiLayoutEngine.cpp
generating dependency information for ../../source/layout/OpenTypeLayoutEngine.cpp
generating dependency information for ../../source/layout/LEFontInstance.cpp
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LEFontInstance.o ../../source/layout/LEFontInstance.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o OpenTypeLayoutEngine.o ../../source/layout/OpenTypeLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ThaiLayoutEngine.o ../../source/layout/ThaiLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ThaiShaping.o ../../source/layout/ThaiShaping.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ThaiStateTables.o ../../source/layout/ThaiStateTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ArabicLayoutEngine.o ../../source/layout/ArabicLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GXLayoutEngine.o ../../source/layout/GXLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o HanLayoutEngine.o ../../source/layout/HanLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o IndicLayoutEngine.o ../../source/layout/IndicLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LayoutEngine.o ../../source/layout/LayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ContextualGlyphSubstProc.o ../../source/layout/ContextualGlyphSubstProc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o IndicRearrangementProcessor.o ../../source/layout/IndicRearrangementProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LigatureSubstProc.o ../../source/layout/LigatureSubstProc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LookupTables.o ../../source/layout/LookupTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MorphTables.o ../../source/layout/MorphTables.cpp
../../source/layout/MorphTables.cpp: In member function 'void icu::MorphTableHeader::process(icu::LEGlyphStorage&) const':
../../source/layout/MorphTables.cpp:35: warning: dereferencing type-punned pointer will break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o NonContextualGlyphSubstProc.o ../../source/layout/NonContextualGlyphSubstProc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SegmentArrayProcessor.o ../../source/layout/SegmentArrayProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SegmentSingleProcessor.o ../../source/layout/SegmentSingleProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SimpleArrayProcessor.o ../../source/layout/SimpleArrayProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SingleTableProcessor.o ../../source/layout/SingleTableProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o StateTableProcessor.o ../../source/layout/StateTableProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SubtableProcessor.o ../../source/layout/SubtableProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o TrimmedArrayProcessor.o ../../source/layout/TrimmedArrayProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o AlternateSubstSubtables.o ../../source/layout/AlternateSubstSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o AnchorTables.o ../../source/layout/AnchorTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ArabicShaping.o ../../source/layout/ArabicShaping.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o CanonData.o ../../source/layout/CanonData.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o CanonShaping.o ../../source/layout/CanonShaping.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ClassDefinitionTables.o ../../source/layout/ClassDefinitionTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ContextualSubstSubtables.o ../../source/layout/ContextualSubstSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o CoverageTables.o ../../source/layout/CoverageTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o CursiveAttachmentSubtables.o ../../source/layout/CursiveAttachmentSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o DeviceTables.o ../../source/layout/DeviceTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ExtensionSubtables.o ../../source/layout/ExtensionSubtables.cpp
../../source/layout/ExtensionSubtables.cpp: In function 'le_uint32 icu::READ_LONG(le_uint32)':
../../source/layout/ExtensionSubtables.cpp:20: warning: dereferencing type-punned pointer will break strict-aliasing rules
../../source/layout/ExtensionSubtables.cpp:21: warning: dereferencing type-punned pointer will break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o Features.o ../../source/layout/Features.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GDEFMarkFilter.o ../../source/layout/GDEFMarkFilter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphDefinitionTables.o ../../source/layout/GlyphDefinitionTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphIterator.o ../../source/layout/GlyphIterator.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphLookupTables.o ../../source/layout/GlyphLookupTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphPosnLookupProc.o ../../source/layout/GlyphPosnLookupProc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphPositionAdjustments.o ../../source/layout/GlyphPositionAdjustments.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphPositioningTables.o ../../source/layout/GlyphPositioningTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphSubstLookupProc.o ../../source/layout/GlyphSubstLookupProc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o GlyphSubstitutionTables.o ../../source/layout/GlyphSubstitutionTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o IndicClassTables.o ../../source/layout/IndicClassTables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o IndicReordering.o ../../source/layout/IndicReordering.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LEInsertionList.o ../../source/layout/LEInsertionList.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LEGlyphStorage.o ../../source/layout/LEGlyphStorage.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LigatureSubstSubtables.o ../../source/layout/LigatureSubstSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LookupProcessor.o ../../source/layout/LookupProcessor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o Lookups.o ../../source/layout/Lookups.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MarkArrays.o ../../source/layout/MarkArrays.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MarkToBasePosnSubtables.o ../../source/layout/MarkToBasePosnSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MarkToLigaturePosnSubtables.o ../../source/layout/MarkToLigaturePosnSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MarkToMarkPosnSubtables.o ../../source/layout/MarkToMarkPosnSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MirroredCharData.o ../../source/layout/MirroredCharData.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MPreFixups.o ../../source/layout/MPreFixups.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o MultipleSubstSubtables.o ../../source/layout/MultipleSubstSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o OpenTypeUtilities.o ../../source/layout/OpenTypeUtilities.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o PairPositioningSubtables.o ../../source/layout/PairPositioningSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ScriptAndLanguage.o ../../source/layout/ScriptAndLanguage.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ScriptAndLanguageTags.o ../../source/layout/ScriptAndLanguageTags.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ShapingTypeData.o ../../source/layout/ShapingTypeData.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SinglePositioningSubtables.o ../../source/layout/SinglePositioningSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SingleSubstitutionSubtables.o ../../source/layout/SingleSubstitutionSubtables.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o SubstitutionLookups.o ../../source/layout/SubstitutionLookups.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ValueRecords.o ../../source/layout/ValueRecords.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o KhmerLayoutEngine.o ../../source/layout/KhmerLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o KhmerReordering.o ../../source/layout/KhmerReordering.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o TibetanLayoutEngine.o ../../source/layout/TibetanLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o TibetanReordering.o ../../source/layout/TibetanReordering.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o HangulLayoutEngine.o ../../source/layout/HangulLayoutEngine.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o KernTable.o ../../source/layout/KernTable.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layout -I../../source/layout/.. -I../../source/common -I../../source/layout/unicode -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUT_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o loengine.o ../../source/layout/loengine.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicule.so.49 -o ../lib/libicule.so.49.1.2 LEFontInstance.o OpenTypeLayoutEngine.o ThaiLayoutEngine.o ThaiShaping.o ThaiStateTables.o ArabicLayoutEngine.o GXLayoutEngine.o HanLayoutEngine.o IndicLayoutEngine.o LayoutEngine.o ContextualGlyphSubstProc.o IndicRearrangementProcessor.o LigatureSubstProc.o LookupTables.o MorphTables.o NonContextualGlyphSubstProc.o SegmentArrayProcessor.o SegmentSingleProcessor.o SimpleArrayProcessor.o SingleTableProcessor.o StateTableProcessor.o SubtableProcessor.o TrimmedArrayProcessor.o AlternateSubstSubtables.o AnchorTables.o ArabicShaping.o CanonData.o CanonShaping.o ClassDefinitionTables.o ContextualSubstSubtables.o CoverageTables.o CursiveAttachmentSubtables.o DeviceTables.o ExtensionSubtables.o Features.o GDEFMarkFilter.o GlyphDefinitionTables.o GlyphIterator.o GlyphLookupTables.o GlyphPosnLookupProc.o GlyphPositionAdjustments.o GlyphPositioningTables.o GlyphSubstLookupProc.o GlyphSubstitutionTables.o IndicClassTables.o IndicReordering.o LEInsertionList.o LEGlyphStorage.o LigatureSubstSubtables.o LookupProcessor.o Lookups.o MarkArrays.o MarkToBasePosnSubtables.o MarkToLigaturePosnSubtables.o MarkToMarkPosnSubtables.o MirroredCharData.o MPreFixups.o MultipleSubstSubtables.o OpenTypeUtilities.o PairPositioningSubtables.o ScriptAndLanguage.o ScriptAndLanguageTags.o ShapingTypeData.o SinglePositioningSubtables.o SingleSubstitutionSubtables.o SubstitutionLookups.o ValueRecords.o KhmerLayoutEngine.o KhmerReordering.o TibetanLayoutEngine.o TibetanReordering.o HangulLayoutEngine.o KernTable.o loengine.o -L../lib -licuuc -L../stubdata -licudata -lpthread -ldl -lm
rm -f ../lib/libicule.so.49 && ln -s libicule.so.49.1.2 ../lib/libicule.so.49
rm -f ../lib/libicule.so && ln -s libicule.so.49.1.2 ../lib/libicule.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[0]: Making `all' in `layoutex'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
generating dependency information for ../../source/layoutex/plruns.cpp
generating dependency information for ../../source/layoutex/playout.cpp
generating dependency information for ../../source/layoutex/LXUtilities.cpp
generating dependency information for ../../source/layoutex/RunArrays.cpp
generating dependency information for ../../source/layoutex/ParagraphLayout.cpp
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layoutex -I../../source/layoutex/unicode -I../../source/layoutex/.. -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUTEX_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ParagraphLayout.o ../../source/layoutex/ParagraphLayout.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layoutex -I../../source/layoutex/unicode -I../../source/layoutex/.. -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUTEX_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o RunArrays.o ../../source/layoutex/RunArrays.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layoutex -I../../source/layoutex/unicode -I../../source/layoutex/.. -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUTEX_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o LXUtilities.o ../../source/layoutex/LXUtilities.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layoutex -I../../source/layoutex/unicode -I../../source/layoutex/.. -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUTEX_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o playout.o ../../source/layoutex/playout.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/layoutex -I../../source/layoutex/unicode -I../../source/layoutex/.. -I../../source/common -DU_ATTRIBUTE_DEPRECATED= -DU_LAYOUTEX_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o plruns.o ../../source/layoutex/plruns.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libiculx.so.49 -o ../lib/libiculx.so.49.1.2 ParagraphLayout.o RunArrays.o LXUtilities.o playout.o plruns.o -L../lib -licuuc -L../stubdata -licudata -L../lib -licule -lpthread -ldl -lm
rm -f ../lib/libiculx.so.49 && ln -s libiculx.so.49.1.2 ../lib/libiculx.so.49
rm -f ../lib/libiculx.so && ln -s libiculx.so.49.1.2 ../lib/libiculx.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[0]: Making `all' in `tools'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Making `all' in `toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
generating dependency information for ../../../source/tools/toolutil/ucln_tu.c
generating dependency information for ../../../source/tools/toolutil/dbgutil.cpp
generating dependency information for ../../../source/tools/toolutil/udbgutil.cpp
generating dependency information for ../../../source/tools/toolutil/filetools.cpp
generating dependency information for ../../../source/tools/toolutil/flagparser.c
generating dependency information for ../../../source/tools/toolutil/ppucd.cpp
generating dependency information for ../../../source/tools/toolutil/pkg_gencmn.c
generating dependency information for ../../../source/tools/toolutil/pkg_genc.c
generating dependency information for ../../../source/tools/toolutil/pkg_icu.cpp
generating dependency information for ../../../source/tools/toolutil/writesrc.c
generating dependency information for ../../../source/tools/toolutil/xmlparser.cpp
generating dependency information for ../../../source/tools/toolutil/ucbuf.c
generating dependency information for ../../../source/tools/toolutil/uparse.c
generating dependency information for ../../../source/tools/toolutil/uoptions.c
generating dependency information for ../../../source/tools/toolutil/ucmstate.c
generating dependency information for ../../../source/tools/toolutil/ucm.c
generating dependency information for ../../../source/tools/toolutil/denseranges.cpp
generating dependency information for ../../../source/tools/toolutil/unewdata.c
generating dependency information for ../../../source/tools/toolutil/toolutil.cpp
generating dependency information for ../../../source/tools/toolutil/swapimpl.cpp
generating dependency information for ../../../source/tools/toolutil/pkgitems.cpp
generating dependency information for ../../../source/tools/toolutil/package.cpp
generating dependency information for ../../../source/tools/toolutil/filestrm.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o filestrm.o ../../../source/tools/toolutil/filestrm.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o package.o ../../../source/tools/toolutil/package.cpp
../../../source/tools/toolutil/package.cpp: In member function 'void icu::Package::setItemCapacity(int32_t)':
../../../source/tools/toolutil/package.cpp:1239: warning: format '%lu' expects type 'long unsigned int', but argument 3 has type 'unsigned int'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o pkgitems.o ../../../source/tools/toolutil/pkgitems.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o swapimpl.o ../../../source/tools/toolutil/swapimpl.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o toolutil.o ../../../source/tools/toolutil/toolutil.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o unewdata.o ../../../source/tools/toolutil/unewdata.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o denseranges.o ../../../source/tools/toolutil/denseranges.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucm.o ../../../source/tools/toolutil/ucm.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucmstate.o ../../../source/tools/toolutil/ucmstate.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uoptions.o ../../../source/tools/toolutil/uoptions.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uparse.o ../../../source/tools/toolutil/uparse.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucbuf.o ../../../source/tools/toolutil/ucbuf.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o xmlparser.o ../../../source/tools/toolutil/xmlparser.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o writesrc.o ../../../source/tools/toolutil/writesrc.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o pkg_icu.o ../../../source/tools/toolutil/pkg_icu.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o pkg_genc.o ../../../source/tools/toolutil/pkg_genc.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o pkg_gencmn.o ../../../source/tools/toolutil/pkg_gencmn.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ppucd.o ../../../source/tools/toolutil/ppucd.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o flagparser.o ../../../source/tools/toolutil/flagparser.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o filetools.o ../../../source/tools/toolutil/filetools.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o udbgutil.o ../../../source/tools/toolutil/udbgutil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o dbgutil.o ../../../source/tools/toolutil/dbgutil.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n "-DU_BUILD=\"armv5teb-unknown-linux-gnueabi\"" "-DU_HOST=\"armv5teb-unknown-linux-gnueabi\"" "-DU_CC=\"gcc\"" "-DU_CXX=\"g++\"" -DU_ATTRIBUTE_DEPRECATED= -DU_TOOLUTIL_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucln_tu.o ../../../source/tools/toolutil/ucln_tu.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicutu.so.49 -o ../../lib/libicutu.so.49.1.2 filestrm.o package.o pkgitems.o swapimpl.o toolutil.o unewdata.o denseranges.o ucm.o ucmstate.o uoptions.o uparse.o ucbuf.o xmlparser.o writesrc.o pkg_icu.o pkg_genc.o pkg_gencmn.o ppucd.o flagparser.o filetools.o udbgutil.o dbgutil.o ucln_tu.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
rm -f ../../lib/libicutu.so.49 && ln -s libicutu.so.49.1.2 ../../lib/libicutu.so.49
rm -f ../../lib/libicutu.so && ln -s libicutu.so.49.1.2 ../../lib/libicutu.so
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[1]: Making `all' in `ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
generating dependency information for ../../../source/tools/ctestfw/ucln_ct.c
generating dependency information for ../../../source/tools/ctestfw/uperf.cpp
generating dependency information for ../../../source/tools/ctestfw/datamap.cpp
generating dependency information for ../../../source/tools/ctestfw/testdata.cpp
generating dependency information for ../../../source/tools/ctestfw/tstdtmod.cpp
generating dependency information for ../../../source/tools/ctestfw/ctest.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ctest.o ../../../source/tools/ctestfw/ctest.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o tstdtmod.o ../../../source/tools/ctestfw/tstdtmod.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o testdata.o ../../../source/tools/ctestfw/testdata.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o datamap.o ../../../source/tools/ctestfw/datamap.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uperf.o ../../../source/tools/ctestfw/uperf.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw/../toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -DT_CTEST_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucln_ct.o ../../../source/tools/ctestfw/ucln_ct.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicutest.so.49 -o libicutest.so.49.1.2 ctest.o tstdtmod.o testdata.o datamap.o uperf.o ucln_ct.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
rm -f libicutest.so.49 && ln -s libicutest.so.49.1.2 libicutest.so.49
rm -f libicutest.so && ln -s libicutest.so.49.1.2 libicutest.so
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[1]: Making `all' in `makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
generating dependency information for ../../../source/tools/makeconv/gencnvex.c
generating dependency information for ../../../source/tools/makeconv/genmbcs.cpp
generating dependency information for ../../../source/tools/makeconv/ucnvstat.c
generating dependency information for ../../../source/tools/makeconv/makeconv.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/makeconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o makeconv.o ../../../source/tools/makeconv/makeconv.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/makeconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ucnvstat.o ../../../source/tools/makeconv/ucnvstat.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/makeconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o genmbcs.o ../../../source/tools/makeconv/genmbcs.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/makeconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o gencnvex.o ../../../source/tools/makeconv/gencnvex.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/makeconv makeconv.o ucnvstat.o genmbcs.o gencnvex.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/makeconv/makeconv.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/makeconv/makeconv.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[1]: Making `all' in `genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
generating dependency information for ../../../source/tools/genrb/prscmnts.cpp
generating dependency information for ../../../source/tools/genrb/wrtxml.cpp
generating dependency information for ../../../source/tools/genrb/rle.c
generating dependency information for ../../../source/tools/genrb/wrtjava.c
generating dependency information for ../../../source/tools/genrb/rbutil.c
generating dependency information for ../../../source/tools/genrb/ustr.c
generating dependency information for ../../../source/tools/genrb/reslist.c
generating dependency information for ../../../source/tools/genrb/read.c
generating dependency information for ../../../source/tools/genrb/parse.cpp
generating dependency information for ../../../source/tools/genrb/genrb.c
generating dependency information for ../../../source/tools/genrb/errmsg.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o errmsg.o ../../../source/tools/genrb/errmsg.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o genrb.o ../../../source/tools/genrb/genrb.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o parse.o ../../../source/tools/genrb/parse.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o read.o ../../../source/tools/genrb/read.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o reslist.o ../../../source/tools/genrb/reslist.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ustr.o ../../../source/tools/genrb/ustr.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o rbutil.o ../../../source/tools/genrb/rbutil.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o wrtjava.o ../../../source/tools/genrb/wrtjava.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o rle.o ../../../source/tools/genrb/rle.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o wrtxml.o ../../../source/tools/genrb/wrtxml.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o prscmnts.o ../../../source/tools/genrb/prscmnts.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/genrb errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o wrtjava.o rle.o wrtxml.o prscmnts.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/genrb/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o derb.o ../../../source/tools/genrb/derb.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/derb derb.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/genrb/derb.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/genrb/derb.1
cd ../.. \
&& CONFIG_FILES=tools/genrb/genrb.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/genrb/genrb.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[1]: Making `all' in `genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
generating dependency information for ../../../source/tools/genbrk/genbrk.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/genbrk/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o genbrk.o ../../../source/tools/genbrk/genbrk.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/genbrk genbrk.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/genbrk/genbrk.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/genbrk/genbrk.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[1]: Making `all' in `genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
generating dependency information for ../../../source/tools/genctd/genctd.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/genctd/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o genctd.o ../../../source/tools/genctd/genctd.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/genctd genctd.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/genctd/genctd.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/genctd/genctd.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[1]: Making `all' in `gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
generating dependency information for ../../../source/tools/gencnval/gencnval.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gencnval/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o gencnval.o ../../../source/tools/gencnval/gencnval.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/gencnval gencnval.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/gencnval/gencnval.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/gencnval/gencnval.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[1]: Making `all' in `gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
generating dependency information for ../../../source/tools/gensprep/store.c
generating dependency information for ../../../source/tools/gensprep/gensprep.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gensprep/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o gensprep.o ../../../source/tools/gensprep/gensprep.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gensprep/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o store.o ../../../source/tools/gensprep/store.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/gensprep gensprep.o store.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/gensprep/gensprep.8 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/gensprep/gensprep.8
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[1]: Making `all' in `icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
generating dependency information for ../../../source/tools/icuinfo/icuinfo.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/icuinfo/../toolutil -I../../../source/tools/ctestfw -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o icuinfo.o ../../../source/tools/icuinfo/icuinfo.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o icuinfo icuinfo.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[1]: Making `all' in `genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
generating dependency information for ../../../source/tools/genccode/genccode.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/genccode/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o genccode.o ../../../source/tools/genccode/genccode.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/genccode genccode.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/genccode/genccode.8 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/genccode/genccode.8
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[1]: Making `all' in `gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
generating dependency information for ../../../source/tools/gencmn/gencmn.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gencmn/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o gencmn.o ../../../source/tools/gencmn/gencmn.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/gencmn gencmn.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/gencmn/gencmn.8 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/gencmn/gencmn.8
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[1]: Making `all' in `icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
generating dependency information for ../../../source/tools/icupkg/icupkg.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/icupkg/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o icupkg.o ../../../source/tools/icupkg/icupkg.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/icupkg icupkg.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/icupkg/icupkg.8 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/icupkg/icupkg.8
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[1]: Making `all' in `pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
generating dependency information for ../../../source/tools/pkgdata/pkgtypes.c
generating dependency information for ../../../source/tools/pkgdata/pkgdata.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/pkgdata/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DUDATA_SO_SUFFIX=\".so\" -DSTATIC_O=\"ao\" -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o pkgdata.o ../../../source/tools/pkgdata/pkgdata.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/pkgdata/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DUDATA_SO_SUFFIX=\".so\" -DSTATIC_O=\"ao\" -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o pkgtypes.o ../../../source/tools/pkgdata/pkgtypes.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/pkgdata pkgdata.o pkgtypes.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
cd ../.. \
&& CONFIG_FILES=tools/pkgdata/pkgdata.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating tools/pkgdata/pkgdata.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[1]: Making `all' in `gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
generating dependency information for ../../../source/tools/gentest/genres32.c
generating dependency information for ../../../source/tools/gentest/gentest.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gentest/../toolutil -I../../../source/tools/ctestfw -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o gentest.o ../../../source/tools/gentest/gentest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gentest/../toolutil -I../../../source/tools/ctestfw -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o genres32.o ../../../source/tools/gentest/genres32.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o gentest gentest.o genres32.o -L../../tools/ctestfw -licutest -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[1]: Making `all' in `gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
generating dependency information for ../../../source/tools/gennorm2/n2builder.cpp
generating dependency information for ../../../source/tools/gennorm2/gennorm2.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gennorm2/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o gennorm2.o ../../../source/tools/gennorm2/gennorm2.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/tools/gennorm2/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o n2builder.o ../../../source/tools/gennorm2/n2builder.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/gennorm2 gennorm2.o n2builder.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[1]: Making `all' in `gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
generating dependency information for ../../../source/tools/gencfu/gencfu.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/gencfu/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o gencfu.o ../../../source/tools/gencfu/gencfu.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/gencfu gencfu.o -L../../lib -licutu -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[0]: Making `all' in `data'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
/bin/bash ../../source/mkinstalldirs ./out ./out/build ./out/build/icudt49b ./out/build/icudt49b/curr ./out/build/icudt49b/lang ./out/build/icudt49b/region ./out/build/icudt49b/zone ./out/build/icudt49b/brkitr ./out/build/icudt49b/coll ./out/build/icudt49b/rbnf ./out/build/icudt49b/translit ./out/tmp ./out/tmp/curr ./out/tmp/lang ./out/tmp/region ./out/tmp/zone ./out/tmp/coll ./out/tmp/rbnf ./out/tmp/translit ./out/tmp/brkitr
mkdir ./out
mkdir ./out/build
mkdir ./out/build/icudt49b
mkdir ./out/build/icudt49b/curr
mkdir ./out/build/icudt49b/lang
mkdir ./out/build/icudt49b/region
mkdir ./out/build/icudt49b/zone
mkdir ./out/build/icudt49b/brkitr
mkdir ./out/build/icudt49b/coll
mkdir ./out/build/icudt49b/rbnf
mkdir ./out/build/icudt49b/translit
mkdir ./out/tmp
mkdir ./out/tmp/curr
mkdir ./out/tmp/lang
mkdir ./out/tmp/region
mkdir ./out/tmp/zone
mkdir ./out/tmp/coll
mkdir ./out/tmp/rbnf
mkdir ./out/tmp/translit
mkdir ./out/tmp/brkitr
make -f pkgdataMakefile
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
rm -rf icupkg.inc
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg -tb ../../source/data/in/icudt49l.dat ./out/icudt49b.dat
Unpacking ./out/icudt49b.dat and generating out/tmp/icudata.lst (list of data files)
LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH ../bin/icupkg -d ./out/build/icudt49b --list -x \* ./out/icudt49b.dat -o out/tmp/icudata.lst
LD_LIBRARY_PATH=../stubdata:../tools/ctestfw:../lib:$LD_LIBRARY_PATH MAKEFLAGS= ../bin/pkgdata -O ../data/icupkg.inc -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data/out/build/icudt49b -d ../lib -e icudt49 -T ./out/tmp -p icudt49b -m dll -r 49.1.2 -L icudata ./out/tmp/icudata.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../source/common -I../common -DPIC -fPIC -o ./out/tmp/icudt49b_dat.o ./out/tmp/icudt49b_dat.s
pkgdata: gcc -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -nodefaultlibs -nostdlib -o ../lib/libicudata.so.49.1.2 ./out/tmp/icudt49b_dat.o -Wl,-soname -Wl,libicudata.so.49 -Wl,-Bsymbolic
pkgdata: cd ../lib/ && rm -f libicudata.so.49 && ln -s libicudata.so.49.1.2 libicudata.so.49
pkgdata: cd ../lib/ && rm -f libicudata.so && ln -s libicudata.so.49.1.2 libicudata.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
make[0]: Making `all' in `io'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
generating dependency information for ../../source/io/ucln_io.c
generating dependency information for ../../source/io/ustream.cpp
generating dependency information for ../../source/io/sscanf.c
generating dependency information for ../../source/io/sprintf.c
generating dependency information for ../../source/io/ustdio.c
generating dependency information for ../../source/io/uscanf_p.c
generating dependency information for ../../source/io/uscanf.c
generating dependency information for ../../source/io/uprntf_p.c
generating dependency information for ../../source/io/uprintf.c
generating dependency information for ../../source/io/ufmt_cmn.c
generating dependency information for ../../source/io/ufile.c
generating dependency information for ../../source/io/locbund.cpp
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o locbund.o ../../source/io/locbund.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ufile.o ../../source/io/ufile.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ufmt_cmn.o ../../source/io/ufmt_cmn.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uprintf.o ../../source/io/uprintf.c
../../source/io/uprintf.c:51: warning: no previous prototype for 'u_get_stdout'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uprntf_p.o ../../source/io/uprntf_p.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uscanf.o ../../source/io/uscanf.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o uscanf_p.o ../../source/io/uscanf_p.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustdio.o ../../source/io/ustdio.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o sprintf.o ../../source/io/sprintf.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o sscanf.o ../../source/io/sscanf.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ustream.o ../../source/io/ustream.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../source/common -I../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_IO_IMPLEMENTATION -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -DPIC -fPIC -o ucln_io.o ../../source/io/ucln_io.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -shared -Wl,-Bsymbolic -Wl,-soname -Wl,libicuio.so.49 -o ../lib/libicuio.so.49.1.2 locbund.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o uscanf.o uscanf_p.o ustdio.o sprintf.o sscanf.o ustream.o ucln_io.o -L../lib -licuuc -L../stubdata -licudata -L../lib -licui18n -lpthread -ldl -lm
rm -f ../lib/libicuio.so.49 && ln -s libicuio.so.49.1.2 ../lib/libicuio.so.49
rm -f ../lib/libicuio.so && ln -s libicuio.so.49.1.2 ../lib/libicuio.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[0]: Making `all' in `extra'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Making `all' in `uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/extra/uconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DUCONVMSG_LINK=uconvmsg -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o uconv.o ../../../source/extra/uconv/uconv.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/extra/uconv/../toolutil -DU_ATTRIBUTE_DEPRECATED= -DUCONVMSG_LINK=uconvmsg -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o uwmsg.o ../../../source/extra/uconv/uwmsg.c
/bin/bash ../../../source/mkinstalldirs uconvmsg
mkdir uconvmsg
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -e UTF-8 -s ../../../source/extra/uconv/resources -d uconvmsg root.txt
/bin/bash ../../../source/mkinstalldirs uconvmsg
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -e UTF-8 -s ../../../source/extra/uconv/resources -d uconvmsg fr.txt
make -f pkgdataMakefile
make[3]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
rm -rf pkgdata.inc
make[3]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../../source/common -I../../common -DPIC -fPIC -o uconvmsg/uconvmsg_dat.o uconvmsg/uconvmsg_dat.s
pkgdata: ar r uconvmsg/libuconvmsg.a uconvmsg/uconvmsg_dat.o
ar: creating uconvmsg/libuconvmsg.a
pkgdata: ranlib uconvmsg/libuconvmsg.a
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/uconv uconv.o uwmsg.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm uconvmsg/libuconvmsg.a
cd ../.. \
&& CONFIG_FILES=extra/uconv/uconv.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating extra/uconv/uconv.1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[0]: Making `all' in `samples'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Making `all' in `date'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
generating dependency information for ../../../source/samples/date/date.c
generating dependency information for ../../../source/samples/date/uprint.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o uprint.o ../../../source/samples/date/uprint.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o date.o ../../../source/samples/date/date.c
../../../source/samples/date/date.c: In function 'date':
../../../source/samples/date/date.c:255: warning: ISO C90 does not support the '%lf' printf format
../../../source/samples/date/date.c:258: warning: ISO C90 does not support the '%lf' printf format
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o icudate uprint.o date.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[1]: Making `all' in `cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
generating dependency information for ../../../source/samples/cal/cal.c
generating dependency information for ../../../source/samples/cal/uprint.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o uprint.o ../../../source/samples/cal/uprint.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cal.o ../../../source/samples/cal/cal.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o icucal uprint.o cal.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[0]: Making `all' in `test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
make[1]: Nothing to be done for `all-local'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
real 2h 29m 37s
user 2h 13m 40s
sys 6m 40.09s
+ time make check
make[0]: Making `all' in `stubdata'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[0]: Making `all' in `common'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[0]: Making `all' in `i18n'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[0]: Making `all' in `layout'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[0]: Making `all' in `layoutex'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[0]: Making `all' in `tools'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Making `all' in `toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[1]: Making `all' in `ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[1]: Making `all' in `makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[1]: Making `all' in `genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[1]: Making `all' in `genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[1]: Making `all' in `genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[1]: Making `all' in `gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[1]: Making `all' in `gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[1]: Making `all' in `icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[1]: Making `all' in `genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[1]: Making `all' in `gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[1]: Making `all' in `icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[1]: Making `all' in `pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[1]: Making `all' in `gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[1]: Making `all' in `gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[1]: Making `all' in `gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[0]: Making `all' in `data'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
LD_LIBRARY_PATH=../stubdata:../tools/ctestfw:../lib:$LD_LIBRARY_PATH MAKEFLAGS= ../bin/pkgdata -O ../data/icupkg.inc -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data/out/build/icudt49b -d ../lib -e icudt49 -T ./out/tmp -p icudt49b -m dll -r 49.1.2 -L icudata ./out/tmp/icudata.lst
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
make[0]: Making `all' in `io'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[0]: Making `all' in `extra'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Making `all' in `uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../../source/common -I../../common -DPIC -fPIC -o uconvmsg/uconvmsg_dat.o uconvmsg/uconvmsg_dat.s
pkgdata: ar r uconvmsg/libuconvmsg.a uconvmsg/uconvmsg_dat.o
pkgdata: ranlib uconvmsg/libuconvmsg.a
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[0]: Making `all' in `samples'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Making `all' in `date'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[1]: Making `all' in `cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[0]: Making `all' in `test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
make[1]: Nothing to be done for `all-local'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
make[0]: Making `check' in `stubdata'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[0]: Making `check' in `common'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[0]: Making `check' in `i18n'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[0]: Making `check' in `layout'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[0]: Making `check' in `layoutex'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[0]: Making `check' in `tools'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Making `all' in `toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[1]: Making `all' in `ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[1]: Making `all' in `makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[1]: Making `all' in `genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[1]: Making `all' in `genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[1]: Making `all' in `genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[1]: Making `all' in `gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[1]: Making `all' in `gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[1]: Making `all' in `icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[1]: Making `all' in `genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[1]: Making `all' in `gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[1]: Making `all' in `icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[1]: Making `all' in `pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[1]: Making `all' in `gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[1]: Making `all' in `gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[1]: Making `all' in `gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Making `check' in `toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[1]: Making `check' in `ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[1]: Making `check' in `makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[1]: Making `check' in `genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[1]: Making `check' in `genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[1]: Making `check' in `genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[1]: Making `check' in `gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[1]: Making `check' in `gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[1]: Making `check' in `icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ./icuinfo -i ../../data/out/build/icudt49b -x ../../config/icuinfo.xml -v
Copyright (C) 2012, International Business Machines Corporation and others. All Rights Reserved.
icu4c
International Components for Unicode for C/C++
49.1.2
6.1
4000
Other (POSIX-like)
en_US_POSIX
en-US-u-va-posix
UTF-8
icudt49b
../../data/out/build/icudt49b
21.0
2012c
CET
32
1
4
0
armv5teb-unknown-linux-gnueabi
armv5teb-unknown-linux-gnueabi
gcc
g++
0
0
0
ICU Initialization returned: U_ZERO_ERROR
Plugin file is: /opt/schplurtz/lib/icu/icuplugins49.txt
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[1]: Making `check' in `genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[1]: Making `check' in `gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[1]: Making `check' in `icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[1]: Making `check' in `pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[1]: Making `check' in `gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[1]: Making `check' in `gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[1]: Making `check' in `gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[2]: Nothing to be done for `check-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[0]: Making `check' in `data'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
LD_LIBRARY_PATH=../stubdata:../tools/ctestfw:../lib:$LD_LIBRARY_PATH MAKEFLAGS= ../bin/pkgdata -O ../data/icupkg.inc -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data/out/build/icudt49b -d ../lib -e icudt49 -T ./out/tmp -p icudt49b -m dll -r 49.1.2 -L icudata ./out/tmp/icudata.lst
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
make[0]: Making `check' in `io'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[0]: Making `check' in `extra'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Making `all' in `uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../../source/common -I../../common -DPIC -fPIC -o uconvmsg/uconvmsg_dat.o uconvmsg/uconvmsg_dat.s
pkgdata: ar r uconvmsg/libuconvmsg.a uconvmsg/uconvmsg_dat.o
pkgdata: ranlib uconvmsg/libuconvmsg.a
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/uconv uconv.o uwmsg.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm uconvmsg/libuconvmsg.a
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Making `check' in `uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../../source/common -I../../common -DPIC -fPIC -o uconvmsg/uconvmsg_dat.o uconvmsg/uconvmsg_dat.s
pkgdata: ar r uconvmsg/libuconvmsg.a uconvmsg/uconvmsg_dat.o
pkgdata: ranlib uconvmsg/libuconvmsg.a
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ./../../bin/uconv -f ibm-37 ../../../source/extra/uconv/samples/ibm-37-test.txt
PASS: Conversion from ibm-37 was successful.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[2]: Nothing to be done for `check-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[0]: Making `check' in `samples'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Making `all' in `date'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[1]: Making `all' in `cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[0]: Making `check' in `test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Making `all' in `testdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
/bin/bash ../../../source/mkinstalldirs ../../test/testdata/out ../../test/testdata/out/build ../../test/testdata/out/testdata
mkdir ../../test/testdata/out
mkdir ../../test/testdata/out/build
mkdir ../../test/testdata/out/testdata
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../tools/gentest/gentest -d ../../test/testdata/out/build
Building nfscsi.icu
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gensprep -s ../../../source/test/testdata -d ../../test/testdata/out/build -b nfscsi -u 3.2.0 nfs4_cs_prep_ci.txt
Building nfscss.icu
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gensprep -s ../../../source/test/testdata -d ../../test/testdata/out/build -b nfscss -u 3.2.0 nfs4_cs_prep_cs.txt
Building nfscis.spp
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gensprep -s ../../../source/test/testdata -d ../../test/testdata/out/build -b nfscis -k -n ../../../source/data/unidata -u 3.2.0 nfs4_cis_prep.txt
Building nfsmxs.spp
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gensprep -s ../../../source/test/testdata -d ../../test/testdata/out/build -b nfsmxs -k -n ../../../source/data/unidata -u 3.2.0 nfs4_mixed_prep_s.txt
Building nfsmxp.spp
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gensprep -s ../../../source/test/testdata -d ../../test/testdata/out/build -b nfsmxp -k -n ../../../source/data/unidata -u 3.2.0 nfs4_mixed_prep_p.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test1.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test1bmp.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test3.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test4.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test4x.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/test5.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/makeconv --small -c -d ../../test/testdata/out/build ../../../source/test/testdata/ibm9027.ucm
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/gennorm2 -s ../../../source/test/testdata testnorm.txt -o ../../test/testdata/out/build/testnorm.nrm
gennorm2: processing testnorm.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build DataDrivenCollationTest.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build calendar.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build format.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build casing.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build mc.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build root.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build sh.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build sh_YU.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build te.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build te_IN.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build te_IN_REVISED.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build testtypes.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build testaliases.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build testempty.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build structLocale.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build idna_rules.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build conversion.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -q -s ../../../source/test/testdata -d ../../test/testdata/out/build icuio.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../tools/gentest/gentest -r -d ../../test/testdata/out/build
Generating testtable32.txt
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ../../bin/genrb -k -s ../../test/testdata/out/build -d ../../test/testdata/out/build testtable32.txt
Testing genrb -e option
Finished testing genrb -e option
cp ../../../source/test/testdata/old_l_testtypes.res ../../test/testdata/out/build/old_l_testtypes.res
cp ../../../source/test/testdata/old_e_testtypes.res ../../test/testdata/out/build/old_e_testtypes.res
cp ../../test/testdata/out/build/te_IN.res ../../test/testdata/out/testdata/nam.typ
generating ../../test/testdata/out/build/testdata.lst (list of data files)
make -f pkgdataMakefile
make[3]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
rm -rf pkgdata.inc
make[3]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata/out/build/icudt49b -T ../../test/testdata/out/build -d ../../test/testdata/out -s ../../test/testdata/out/build -p testdata -m common ../../test/testdata/out/build/testdata.lst
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
make[1]: Making `all' in `intltest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
generating dependency information for ../../../source/test/intltest/alphaindextst.cpp
generating dependency information for ../../../source/test/intltest/dcfmtest.cpp
generating dependency information for ../../../source/test/intltest/locnmtst.cpp
generating dependency information for ../../../source/test/intltest/bidiconf.cpp
generating dependency information for ../../../source/test/intltest/simplethread.cpp
generating dependency information for ../../../source/test/intltest/itspoof.cpp
generating dependency information for ../../../source/test/intltest/tufmtts.cpp
generating dependency information for ../../../source/test/intltest/dtifmtts.cpp
generating dependency information for ../../../source/test/intltest/ssearch.cpp
generating dependency information for ../../../source/test/intltest/tzfmttst.cpp
generating dependency information for ../../../source/test/intltest/tzoffloc.cpp
generating dependency information for ../../../source/test/intltest/tzrulets.cpp
generating dependency information for ../../../source/test/intltest/csdetest.cpp
generating dependency information for ../../../source/test/intltest/winutil.cpp
generating dependency information for ../../../source/test/intltest/winnmtst.cpp
generating dependency information for ../../../source/test/intltest/windttst.cpp
generating dependency information for ../../../source/test/intltest/utxttest.cpp
generating dependency information for ../../../source/test/intltest/tokiter.cpp
generating dependency information for ../../../source/test/intltest/textfile.cpp
generating dependency information for ../../../source/test/intltest/uvectest.cpp
generating dependency information for ../../../source/test/intltest/v32test.cpp
generating dependency information for ../../../source/test/intltest/calcasts.cpp
generating dependency information for ../../../source/test/intltest/incaltst.cpp
generating dependency information for ../../../source/test/intltest/uts46test.cpp
generating dependency information for ../../../source/test/intltest/testidna.cpp
generating dependency information for ../../../source/test/intltest/testidn.cpp
generating dependency information for ../../../source/test/intltest/punyref.c
generating dependency information for ../../../source/test/intltest/nptrans.cpp
generating dependency information for ../../../source/test/intltest/idnaconf.cpp
generating dependency information for ../../../source/test/intltest/idnaref.cpp
generating dependency information for ../../../source/test/intltest/uobjtest.cpp
generating dependency information for ../../../source/test/intltest/icusvtst.cpp
generating dependency information for ../../../source/test/intltest/ucaconf.cpp
generating dependency information for ../../../source/test/intltest/itrbnfp.cpp
generating dependency information for ../../../source/test/intltest/itrbnfrt.cpp
generating dependency information for ../../../source/test/intltest/itrbnf.cpp
generating dependency information for ../../../source/test/intltest/regextst.cpp
generating dependency information for ../../../source/test/intltest/reptest.cpp
generating dependency information for ../../../source/test/intltest/srchtest.cpp
generating dependency information for ../../../source/test/intltest/jamotest.cpp
generating dependency information for ../../../source/test/intltest/sfwdchit.cpp
generating dependency information for ../../../source/test/intltest/normconf.cpp
generating dependency information for ../../../source/test/intltest/trnserr.cpp
generating dependency information for ../../../source/test/intltest/transrt.cpp
generating dependency information for ../../../source/test/intltest/testutil.cpp
generating dependency information for ../../../source/test/intltest/cpdtrtst.cpp
generating dependency information for ../../../source/test/intltest/transapi.cpp
generating dependency information for ../../../source/test/intltest/ittrans.cpp
generating dependency information for ../../../source/test/intltest/rbbitst.cpp
generating dependency information for ../../../source/test/intltest/rbbiapts.cpp
generating dependency information for ../../../source/test/intltest/itrbbi.cpp
generating dependency information for ../../../source/test/intltest/ucharstrietest.cpp
generating dependency information for ../../../source/test/intltest/bytestrietest.cpp
generating dependency information for ../../../source/test/intltest/thcoll.cpp
generating dependency information for ../../../source/test/intltest/strtest.cpp
generating dependency information for ../../../source/test/intltest/transtst.cpp
generating dependency information for ../../../source/test/intltest/strcase.cpp
generating dependency information for ../../../source/test/intltest/ustrtest.cpp
generating dependency information for ../../../source/test/intltest/usettest.cpp
generating dependency information for ../../../source/test/intltest/ucdtest.cpp
generating dependency information for ../../../source/test/intltest/tztest.cpp
generating dependency information for ../../../source/test/intltest/tzregts.cpp
generating dependency information for ../../../source/test/intltest/tzbdtest.cpp
generating dependency information for ../../../source/test/intltest/tstnorm.cpp
generating dependency information for ../../../source/test/intltest/tstnrapi.cpp
generating dependency information for ../../../source/test/intltest/tsputil.cpp
generating dependency information for ../../../source/test/intltest/tsnmfmt.cpp
generating dependency information for ../../../source/test/intltest/tsmthred.cpp
generating dependency information for ../../../source/test/intltest/tsdtfmsy.cpp
generating dependency information for ../../../source/test/intltest/tsdcfmsy.cpp
generating dependency information for ../../../source/test/intltest/tsdate.cpp
generating dependency information for ../../../source/test/intltest/tscoll.cpp
generating dependency information for ../../../source/test/intltest/trcoll.cpp
generating dependency information for ../../../source/test/intltest/tmsgfmt.cpp
generating dependency information for ../../../source/test/intltest/tfsmalls.cpp
generating dependency information for ../../../source/test/intltest/selfmts.cpp
generating dependency information for ../../../source/test/intltest/tchcfmt.cpp
generating dependency information for ../../../source/test/intltest/svccoll.cpp
generating dependency information for ../../../source/test/intltest/sdtfmtts.cpp
generating dependency information for ../../../source/test/intltest/restsnew.cpp
generating dependency information for ../../../source/test/intltest/restest.cpp
generating dependency information for ../../../source/test/intltest/regcoll.cpp
generating dependency information for ../../../source/test/intltest/pptest.cpp
generating dependency information for ../../../source/test/intltest/plurfmts.cpp
generating dependency information for ../../../source/test/intltest/plurults.cpp
generating dependency information for ../../../source/test/intltest/numrgts.cpp
generating dependency information for ../../../source/test/intltest/numfmtst.cpp
generating dependency information for ../../../source/test/intltest/nmfmtrt.cpp
generating dependency information for ../../../source/test/intltest/nmfmapts.cpp
generating dependency information for ../../../source/test/intltest/msfmrgts.cpp
generating dependency information for ../../../source/test/intltest/mnkytst.cpp
generating dependency information for ../../../source/test/intltest/miscdtfm.cpp
generating dependency information for ../../../source/test/intltest/loctest.cpp
generating dependency information for ../../../source/test/intltest/lcukocol.cpp
generating dependency information for ../../../source/test/intltest/jacoll.cpp
generating dependency information for ../../../source/test/intltest/itutil.cpp
generating dependency information for ../../../source/test/intltest/itmajor.cpp
generating dependency information for ../../../source/test/intltest/itformat.cpp
generating dependency information for ../../../source/test/intltest/itercoll.cpp
generating dependency information for ../../../source/test/intltest/intltest.cpp
generating dependency information for ../../../source/test/intltest/g7coll.cpp
generating dependency information for ../../../source/test/intltest/frcoll.cpp
generating dependency information for ../../../source/test/intltest/ficoll.cpp
generating dependency information for ../../../source/test/intltest/escoll.cpp
generating dependency information for ../../../source/test/intltest/encoll.cpp
generating dependency information for ../../../source/test/intltest/dtptngts.cpp
generating dependency information for ../../../source/test/intltest/dtfmttst.cpp
generating dependency information for ../../../source/test/intltest/dtfmtrtts.cpp
generating dependency information for ../../../source/test/intltest/dtfmrgts.cpp
generating dependency information for ../../../source/test/intltest/dtfmapts.cpp
generating dependency information for ../../../source/test/intltest/decoll.cpp
generating dependency information for ../../../source/test/intltest/dcfmapts.cpp
generating dependency information for ../../../source/test/intltest/dadrcoll.cpp
generating dependency information for ../../../source/test/intltest/dadrcal.cpp
generating dependency information for ../../../source/test/intltest/dadrfmt.cpp
generating dependency information for ../../../source/test/intltest/fldset.cpp
generating dependency information for ../../../source/test/intltest/currcoll.cpp
generating dependency information for ../../../source/test/intltest/convtest.cpp
generating dependency information for ../../../source/test/intltest/cntabcol.cpp
generating dependency information for ../../../source/test/intltest/citrtest.cpp
generating dependency information for ../../../source/test/intltest/canittst.cpp
generating dependency information for ../../../source/test/intltest/caltztst.cpp
generating dependency information for ../../../source/test/intltest/caltest.cpp
generating dependency information for ../../../source/test/intltest/calregts.cpp
generating dependency information for ../../../source/test/intltest/callimts.cpp
generating dependency information for ../../../source/test/intltest/astrotst.cpp
generating dependency information for ../../../source/test/intltest/apicoll.cpp
generating dependency information for ../../../source/test/intltest/allcoll.cpp
generating dependency information for ../../../source/test/intltest/aliastst.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o aliastst.o ../../../source/test/intltest/aliastst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o allcoll.o ../../../source/test/intltest/allcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o apicoll.o ../../../source/test/intltest/apicoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o astrotst.o ../../../source/test/intltest/astrotst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o callimts.o ../../../source/test/intltest/callimts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o calregts.o ../../../source/test/intltest/calregts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o caltest.o ../../../source/test/intltest/caltest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o caltztst.o ../../../source/test/intltest/caltztst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o canittst.o ../../../source/test/intltest/canittst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o citrtest.o ../../../source/test/intltest/citrtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o cntabcol.o ../../../source/test/intltest/cntabcol.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o convtest.o ../../../source/test/intltest/convtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o currcoll.o ../../../source/test/intltest/currcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o fldset.o ../../../source/test/intltest/fldset.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dadrfmt.o ../../../source/test/intltest/dadrfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dadrcal.o ../../../source/test/intltest/dadrcal.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dadrcoll.o ../../../source/test/intltest/dadrcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dcfmapts.o ../../../source/test/intltest/dcfmapts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o decoll.o ../../../source/test/intltest/decoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtfmapts.o ../../../source/test/intltest/dtfmapts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtfmrgts.o ../../../source/test/intltest/dtfmrgts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtfmtrtts.o ../../../source/test/intltest/dtfmtrtts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtfmttst.o ../../../source/test/intltest/dtfmttst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtptngts.o ../../../source/test/intltest/dtptngts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o encoll.o ../../../source/test/intltest/encoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o escoll.o ../../../source/test/intltest/escoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ficoll.o ../../../source/test/intltest/ficoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o frcoll.o ../../../source/test/intltest/frcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o g7coll.o ../../../source/test/intltest/g7coll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o intltest.o ../../../source/test/intltest/intltest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itercoll.o ../../../source/test/intltest/itercoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itformat.o ../../../source/test/intltest/itformat.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itmajor.o ../../../source/test/intltest/itmajor.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itutil.o ../../../source/test/intltest/itutil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o jacoll.o ../../../source/test/intltest/jacoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o lcukocol.o ../../../source/test/intltest/lcukocol.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o loctest.o ../../../source/test/intltest/loctest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o miscdtfm.o ../../../source/test/intltest/miscdtfm.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o mnkytst.o ../../../source/test/intltest/mnkytst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o msfmrgts.o ../../../source/test/intltest/msfmrgts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o nmfmapts.o ../../../source/test/intltest/nmfmapts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o nmfmtrt.o ../../../source/test/intltest/nmfmtrt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o numfmtst.o ../../../source/test/intltest/numfmtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o numrgts.o ../../../source/test/intltest/numrgts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o plurults.o ../../../source/test/intltest/plurults.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o plurfmts.o ../../../source/test/intltest/plurfmts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o pptest.o ../../../source/test/intltest/pptest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o regcoll.o ../../../source/test/intltest/regcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o restest.o ../../../source/test/intltest/restest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o restsnew.o ../../../source/test/intltest/restsnew.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o sdtfmtts.o ../../../source/test/intltest/sdtfmtts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o svccoll.o ../../../source/test/intltest/svccoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tchcfmt.o ../../../source/test/intltest/tchcfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o selfmts.o ../../../source/test/intltest/selfmts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tfsmalls.o ../../../source/test/intltest/tfsmalls.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tmsgfmt.o ../../../source/test/intltest/tmsgfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o trcoll.o ../../../source/test/intltest/trcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tscoll.o ../../../source/test/intltest/tscoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsdate.o ../../../source/test/intltest/tsdate.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsdcfmsy.o ../../../source/test/intltest/tsdcfmsy.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsdtfmsy.o ../../../source/test/intltest/tsdtfmsy.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsmthred.o ../../../source/test/intltest/tsmthred.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsnmfmt.o ../../../source/test/intltest/tsnmfmt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tsputil.o ../../../source/test/intltest/tsputil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tstnrapi.o ../../../source/test/intltest/tstnrapi.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tstnorm.o ../../../source/test/intltest/tstnorm.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tzbdtest.o ../../../source/test/intltest/tzbdtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tzregts.o ../../../source/test/intltest/tzregts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tztest.o ../../../source/test/intltest/tztest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ucdtest.o ../../../source/test/intltest/ucdtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o usettest.o ../../../source/test/intltest/usettest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ustrtest.o ../../../source/test/intltest/ustrtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o strcase.o ../../../source/test/intltest/strcase.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o transtst.o ../../../source/test/intltest/transtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o strtest.o ../../../source/test/intltest/strtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o thcoll.o ../../../source/test/intltest/thcoll.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o bytestrietest.o ../../../source/test/intltest/bytestrietest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ucharstrietest.o ../../../source/test/intltest/ucharstrietest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itrbbi.o ../../../source/test/intltest/itrbbi.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o rbbiapts.o ../../../source/test/intltest/rbbiapts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o rbbitst.o ../../../source/test/intltest/rbbitst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ittrans.o ../../../source/test/intltest/ittrans.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o transapi.o ../../../source/test/intltest/transapi.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o cpdtrtst.o ../../../source/test/intltest/cpdtrtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o testutil.o ../../../source/test/intltest/testutil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o transrt.o ../../../source/test/intltest/transrt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o trnserr.o ../../../source/test/intltest/trnserr.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o normconf.o ../../../source/test/intltest/normconf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o sfwdchit.o ../../../source/test/intltest/sfwdchit.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o jamotest.o ../../../source/test/intltest/jamotest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o srchtest.o ../../../source/test/intltest/srchtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o reptest.o ../../../source/test/intltest/reptest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o regextst.o ../../../source/test/intltest/regextst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itrbnf.o ../../../source/test/intltest/itrbnf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itrbnfrt.o ../../../source/test/intltest/itrbnfrt.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itrbnfp.o ../../../source/test/intltest/itrbnfp.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ucaconf.o ../../../source/test/intltest/ucaconf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o icusvtst.o ../../../source/test/intltest/icusvtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o uobjtest.o ../../../source/test/intltest/uobjtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o idnaref.o ../../../source/test/intltest/idnaref.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o idnaconf.o ../../../source/test/intltest/idnaconf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o nptrans.o ../../../source/test/intltest/nptrans.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o punyref.o ../../../source/test/intltest/punyref.c
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o testidn.o ../../../source/test/intltest/testidn.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o testidna.o ../../../source/test/intltest/testidna.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o uts46test.o ../../../source/test/intltest/uts46test.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o incaltst.o ../../../source/test/intltest/incaltst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o calcasts.o ../../../source/test/intltest/calcasts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o v32test.o ../../../source/test/intltest/v32test.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o uvectest.o ../../../source/test/intltest/uvectest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o textfile.o ../../../source/test/intltest/textfile.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tokiter.o ../../../source/test/intltest/tokiter.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o utxttest.o ../../../source/test/intltest/utxttest.cpp
../../../source/test/intltest/utxttest.cpp: In function 'UText* openFragmentedUnicodeString(UText*, icu::UnicodeString*, UErrorCode*)':
../../../source/test/intltest/utxttest.cpp:1376: warning: dereferencing type-punned pointer will break strict-aliasing rules
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o windttst.o ../../../source/test/intltest/windttst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o winnmtst.o ../../../source/test/intltest/winnmtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o winutil.o ../../../source/test/intltest/winutil.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o csdetest.o ../../../source/test/intltest/csdetest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tzrulets.o ../../../source/test/intltest/tzrulets.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tzoffloc.o ../../../source/test/intltest/tzoffloc.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tzfmttst.o ../../../source/test/intltest/tzfmttst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o ssearch.o ../../../source/test/intltest/ssearch.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dtifmtts.o ../../../source/test/intltest/dtifmtts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o tufmtts.o ../../../source/test/intltest/tufmtts.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o itspoof.o ../../../source/test/intltest/itspoof.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o simplethread.o ../../../source/test/intltest/simplethread.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o bidiconf.o ../../../source/test/intltest/bidiconf.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o locnmtst.o ../../../source/test/intltest/locnmtst.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o dcfmtest.o ../../../source/test/intltest/dcfmtest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/toolutil -I../../../source/tools/ctestfw -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o alphaindextst.o ../../../source/test/intltest/alphaindextst.cpp
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o intltest aliastst.o allcoll.o apicoll.o astrotst.o callimts.o calregts.o caltest.o caltztst.o canittst.o citrtest.o cntabcol.o convtest.o currcoll.o fldset.o dadrfmt.o dadrcal.o dadrcoll.o dcfmapts.o decoll.o dtfmapts.o dtfmrgts.o dtfmtrtts.o dtfmttst.o dtptngts.o encoll.o escoll.o ficoll.o frcoll.o g7coll.o intltest.o itercoll.o itformat.o itmajor.o itutil.o jacoll.o lcukocol.o loctest.o miscdtfm.o mnkytst.o msfmrgts.o nmfmapts.o nmfmtrt.o numfmtst.o numrgts.o plurults.o plurfmts.o pptest.o regcoll.o restest.o restsnew.o sdtfmtts.o svccoll.o tchcfmt.o selfmts.o tfsmalls.o tmsgfmt.o trcoll.o tscoll.o tsdate.o tsdcfmsy.o tsdtfmsy.o tsmthred.o tsnmfmt.o tsputil.o tstnrapi.o tstnorm.o tzbdtest.o tzregts.o tztest.o ucdtest.o usettest.o ustrtest.o strcase.o transtst.o strtest.o thcoll.o bytestrietest.o ucharstrietest.o itrbbi.o rbbiapts.o rbbitst.o ittrans.o transapi.o cpdtrtst.o testutil.o transrt.o trnserr.o normconf.o sfwdchit.o jamotest.o srchtest.o reptest.o regextst.o itrbnf.o itrbnfrt.o itrbnfp.o ucaconf.o icusvtst.o uobjtest.o idnaref.o idnaconf.o nptrans.o punyref.o testidn.o testidna.o uts46test.o incaltst.o calcasts.o v32test.o uvectest.o textfile.o tokiter.o utxttest.o windttst.o winnmtst.o winutil.o csdetest.o tzrulets.o tzoffloc.o tzfmttst.o ssearch.o dtifmtts.o tufmtts.o itspoof.o simplethread.o bidiconf.o locnmtst.o dcfmtest.o alphaindextst.o -L../../tools/ctestfw -licutest -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -L../../lib -licutu -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
make[1]: Making `all' in `iotest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
generating dependency information for ../../../source/test/iotest/trnstst.c
generating dependency information for ../../../source/test/iotest/filetst.c
generating dependency information for ../../../source/test/iotest/strtst.c
generating dependency information for ../../../source/test/iotest/stream.cpp
generating dependency information for ../../../source/test/iotest/iotest.cpp
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/io -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o iotest.o ../../../source/test/iotest/iotest.cpp
g++ -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/io -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -c -o stream.o ../../../source/test/iotest/stream.cpp
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/io -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o strtst.o ../../../source/test/iotest/strtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/io -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o filetst.o ../../../source/test/iotest/filetst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/io -DU_ATTRIBUTE_DEPRECATED= -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o trnstst.o ../../../source/test/iotest/trnstst.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o iotest iotest.o stream.o strtst.o filetst.o trnstst.o -L../../tools/ctestfw -licutest -L../../lib -licutu -L../../lib -licuio -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
make[1]: Making `all' in `cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
generating dependency information for ../../../source/test/cintltst/spooftest.c
generating dependency information for ../../../source/test/cintltst/ucsdetst.c
generating dependency information for ../../../source/test/cintltst/utexttst.c
generating dependency information for ../../../source/test/cintltst/reapits.c
generating dependency information for ../../../source/test/cintltst/tracetst.c
generating dependency information for ../../../source/test/cintltst/hpmufn.c
generating dependency information for ../../../source/test/cintltst/sprpdata.c
generating dependency information for ../../../source/test/cintltst/spreptst.c
generating dependency information for ../../../source/test/cintltst/nfsprep.c
generating dependency information for ../../../source/test/cintltst/idnatest.c
generating dependency information for ../../../source/test/cintltst/currtest.c
generating dependency information for ../../../source/test/cintltst/utmstest.c
generating dependency information for ../../../source/test/cintltst/uenumtst.c
generating dependency information for ../../../source/test/cintltst/usettest.c
generating dependency information for ../../../source/test/cintltst/trie2test.c
generating dependency information for ../../../source/test/cintltst/trietest.c
generating dependency information for ../../../source/test/cintltst/sorttest.c
generating dependency information for ../../../source/test/cintltst/custrtrn.c
generating dependency information for ../../../source/test/cintltst/usrchtst.c
generating dependency information for ../../../source/test/cintltst/stdnmtst.c
generating dependency information for ../../../source/test/cintltst/utf8tst.c
generating dependency information for ../../../source/test/cintltst/udatpg_test.c
generating dependency information for ../../../source/test/cintltst/cstrtest.c
generating dependency information for ../../../source/test/cintltst/putiltst.c
generating dependency information for ../../../source/test/cintltst/ncnvtst.c
generating dependency information for ../../../source/test/cintltst/ncnvfbts.c
generating dependency information for ../../../source/test/cintltst/utransts.c
generating dependency information for ../../../source/test/cintltst/utf16tst.c
generating dependency information for ../../../source/test/cintltst/udatatst.c
generating dependency information for ../../../source/test/cintltst/eurocreg.c
generating dependency information for ../../../source/test/cintltst/cbididat.c
generating dependency information for ../../../source/test/cintltst/cbiditst.c
generating dependency information for ../../../source/test/cintltst/bocu1tst.c
generating dependency information for ../../../source/test/cintltst/nccbtst.c
generating dependency information for ../../../source/test/cintltst/nucnvtst.c
generating dependency information for ../../../source/test/cintltst/cutiltst.c
generating dependency information for ../../../source/test/cintltst/cstrcase.c
generating dependency information for ../../../source/test/cintltst/custrtst.c
generating dependency information for ../../../source/test/cintltst/cucdtst.c
generating dependency information for ../../../source/test/cintltst/cucdapi.c
generating dependency information for ../../../source/test/cintltst/cturtst.c
generating dependency information for ../../../source/test/cintltst/creststn.c
generating dependency information for ../../../source/test/cintltst/crestst.c
generating dependency information for ../../../source/test/cintltst/cnumtst.c
generating dependency information for ../../../source/test/cintltst/cnormtst.c
generating dependency information for ../../../source/test/cintltst/cnmdptst.c
generating dependency information for ../../../source/test/cintltst/cldrtest.c
generating dependency information for ../../../source/test/cintltst/cposxtst.c
generating dependency information for ../../../source/test/cintltst/cpluralrulestest.c
generating dependency information for ../../../source/test/cintltst/cmsgtst.c
generating dependency information for ../../../source/test/cintltst/cmsccoll.c
generating dependency information for ../../../source/test/cintltst/cloctst.c
generating dependency information for ../../../source/test/cintltst/cjaptst.c
generating dependency information for ../../../source/test/cintltst/citertst.c
generating dependency information for ../../../source/test/cintltst/cintltst.c
generating dependency information for ../../../source/test/cintltst/chashtst.c
generating dependency information for ../../../source/test/cintltst/cg7coll.c
generating dependency information for ../../../source/test/cintltst/cfrtst.c
generating dependency information for ../../../source/test/cintltst/cformtst.c
generating dependency information for ../../../source/test/cintltst/cfintst.c
generating dependency information for ../../../source/test/cintltst/cestst.c
generating dependency information for ../../../source/test/cintltst/cdtrgtst.c
generating dependency information for ../../../source/test/cintltst/cdtdptst.c
generating dependency information for ../../../source/test/cintltst/cdetst.c
generating dependency information for ../../../source/test/cintltst/cdattst.c
generating dependency information for ../../../source/test/cintltst/cdateintervalformattest.c
generating dependency information for ../../../source/test/cintltst/ccurrtst.c
generating dependency information for ../../../source/test/cintltst/cconvtst.c
generating dependency information for ../../../source/test/cintltst/encoll.c
generating dependency information for ../../../source/test/cintltst/ccolltst.c
generating dependency information for ../../../source/test/cintltst/ccapitst.c
generating dependency information for ../../../source/test/cintltst/cctest.c
generating dependency information for ../../../source/test/cintltst/ucnvseltst.c
generating dependency information for ../../../source/test/cintltst/ccaltst.c
generating dependency information for ../../../source/test/cintltst/cbkittst.c
generating dependency information for ../../../source/test/cintltst/cbiapts.c
generating dependency information for ../../../source/test/cintltst/capitst.c
generating dependency information for ../../../source/test/cintltst/colutil.c
generating dependency information for ../../../source/test/cintltst/calltest.c
generating dependency information for ../../../source/test/cintltst/callcoll.c
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o callcoll.o ../../../source/test/cintltst/callcoll.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o calltest.o ../../../source/test/cintltst/calltest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o colutil.o ../../../source/test/cintltst/colutil.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o capitst.o ../../../source/test/cintltst/capitst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cbiapts.o ../../../source/test/cintltst/cbiapts.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cbkittst.o ../../../source/test/cintltst/cbkittst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ccaltst.o ../../../source/test/cintltst/ccaltst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ucnvseltst.o ../../../source/test/cintltst/ucnvseltst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cctest.o ../../../source/test/cintltst/cctest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ccapitst.o ../../../source/test/cintltst/ccapitst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ccolltst.o ../../../source/test/cintltst/ccolltst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o encoll.o ../../../source/test/cintltst/encoll.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cconvtst.o ../../../source/test/cintltst/cconvtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ccurrtst.o ../../../source/test/cintltst/ccurrtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cdateintervalformattest.o ../../../source/test/cintltst/cdateintervalformattest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cdattst.o ../../../source/test/cintltst/cdattst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cdetst.o ../../../source/test/cintltst/cdetst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cdtdptst.o ../../../source/test/cintltst/cdtdptst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cdtrgtst.o ../../../source/test/cintltst/cdtrgtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cestst.o ../../../source/test/cintltst/cestst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cfintst.o ../../../source/test/cintltst/cfintst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cformtst.o ../../../source/test/cintltst/cformtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cfrtst.o ../../../source/test/cintltst/cfrtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cg7coll.o ../../../source/test/cintltst/cg7coll.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o chashtst.o ../../../source/test/cintltst/chashtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cintltst.o ../../../source/test/cintltst/cintltst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o citertst.o ../../../source/test/cintltst/citertst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cjaptst.o ../../../source/test/cintltst/cjaptst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cloctst.o ../../../source/test/cintltst/cloctst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cmsccoll.o ../../../source/test/cintltst/cmsccoll.c
../../../source/test/cintltst/cmsccoll.c: In function 'TestHaniReorderWithOtherRules':
../../../source/test/cintltst/cmsccoll.c:6497: warning: unused variable 'apiRules'
../../../source/test/cintltst/cmsccoll.c: In function 'TestReorderWithNumericCollation':
../../../source/test/cintltst/cmsccoll.c:6562: warning: unused variable 'i'
../../../source/test/cintltst/cmsccoll.c: In function 'TestImportRulesFiWithEor':
../../../source/test/cintltst/cmsccoll.c:6697: warning: unused variable 'fiEorRules'
../../../source/test/cintltst/cmsccoll.c: At top level:
../../../source/test/cintltst/cmsccoll.c:6543: warning: 'TestReorderWithNumericCollation' defined but not used
../../../source/test/cintltst/cmsccoll.c:6658: warning: 'TestImportRulesFiWithEor' defined but not used
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cmsgtst.o ../../../source/test/cintltst/cmsgtst.c
../../../source/test/cintltst/cmsgtst.c:91: warning: 'returnsNullForType' defined but not used
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cpluralrulestest.o ../../../source/test/cintltst/cpluralrulestest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cposxtst.o ../../../source/test/cintltst/cposxtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cldrtest.o ../../../source/test/cintltst/cldrtest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cnmdptst.o ../../../source/test/cintltst/cnmdptst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cnormtst.o ../../../source/test/cintltst/cnormtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cnumtst.o ../../../source/test/cintltst/cnumtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o crestst.o ../../../source/test/cintltst/crestst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o creststn.o ../../../source/test/cintltst/creststn.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cturtst.o ../../../source/test/cintltst/cturtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cucdapi.o ../../../source/test/cintltst/cucdapi.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cucdtst.o ../../../source/test/cintltst/cucdtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o custrtst.o ../../../source/test/cintltst/custrtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cstrcase.o ../../../source/test/cintltst/cstrcase.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cutiltst.o ../../../source/test/cintltst/cutiltst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o nucnvtst.o ../../../source/test/cintltst/nucnvtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o nccbtst.o ../../../source/test/cintltst/nccbtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o bocu1tst.o ../../../source/test/cintltst/bocu1tst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cbiditst.o ../../../source/test/cintltst/cbiditst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cbididat.o ../../../source/test/cintltst/cbididat.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o eurocreg.o ../../../source/test/cintltst/eurocreg.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o udatatst.o ../../../source/test/cintltst/udatatst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o utf16tst.o ../../../source/test/cintltst/utf16tst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o utransts.o ../../../source/test/cintltst/utransts.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ncnvfbts.o ../../../source/test/cintltst/ncnvfbts.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ncnvtst.o ../../../source/test/cintltst/ncnvtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o putiltst.o ../../../source/test/cintltst/putiltst.c
../../../source/test/cintltst/putiltst.c: In function 'Test_aestrncpy':
../../../source/test/cintltst/putiltst.c:492: warning: passing argument 1 of 'dump_binline' discards qualifiers from pointer target type
../../../source/test/cintltst/putiltst.c:496: warning: passing argument 1 of 'dump_binline' discards qualifiers from pointer target type
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o cstrtest.o ../../../source/test/cintltst/cstrtest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o udatpg_test.o ../../../source/test/cintltst/udatpg_test.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o utf8tst.o ../../../source/test/cintltst/utf8tst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o stdnmtst.o ../../../source/test/cintltst/stdnmtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o usrchtst.o ../../../source/test/cintltst/usrchtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o custrtrn.o ../../../source/test/cintltst/custrtrn.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o sorttest.o ../../../source/test/cintltst/sorttest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o trietest.o ../../../source/test/cintltst/trietest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o trie2test.o ../../../source/test/cintltst/trie2test.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o usettest.o ../../../source/test/cintltst/usettest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o uenumtst.o ../../../source/test/cintltst/uenumtst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o utmstest.o ../../../source/test/cintltst/utmstest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o currtest.o ../../../source/test/cintltst/currtest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o idnatest.o ../../../source/test/cintltst/idnatest.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o nfsprep.o ../../../source/test/cintltst/nfsprep.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o spreptst.o ../../../source/test/cintltst/spreptst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o sprpdata.o ../../../source/test/cintltst/sprpdata.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o hpmufn.o ../../../source/test/cintltst/hpmufn.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o tracetst.o ../../../source/test/cintltst/tracetst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o reapits.o ../../../source/test/cintltst/reapits.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o utexttst.o ../../../source/test/cintltst/utexttst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o ucsdetst.o ../../../source/test/cintltst/ucsdetst.c
gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -I../../../source/common -I../../../source/i18n -I../../../source/tools/ctestfw -I../../../source/tools/toolutil -DU_ATTRIBUTE_DEPRECATED= -D'ICU_UNICODE_VERSION="6.1"' -D'ICU_VERSION="49.1.2"' -D'ICUDATA_NAME="icudt49b"' -D'U_TOPSRCDIR="../../../source/"' -D'U_TOPBUILDDIR="/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/"' -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -o spooftest.o ../../../source/test/cintltst/spooftest.c
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o cintltst callcoll.o calltest.o colutil.o capitst.o cbiapts.o cbkittst.o ccaltst.o ucnvseltst.o cctest.o ccapitst.o ccolltst.o encoll.o cconvtst.o ccurrtst.o cdateintervalformattest.o cdattst.o cdetst.o cdtdptst.o cdtrgtst.o cestst.o cfintst.o cformtst.o cfrtst.o cg7coll.o chashtst.o cintltst.o citertst.o cjaptst.o cloctst.o cmsccoll.o cmsgtst.o cpluralrulestest.o cposxtst.o cldrtest.o cnmdptst.o cnormtst.o cnumtst.o crestst.o creststn.o cturtst.o cucdapi.o cucdtst.o custrtst.o cstrcase.o cutiltst.o nucnvtst.o nccbtst.o bocu1tst.o cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o udatpg_test.o utf8tst.o stdnmtst.o usrchtst.o custrtrn.o sorttest.o trietest.o trie2test.o usettest.o uenumtst.o utmstest.o currtest.o idnatest.o nfsprep.o spreptst.o sprpdata.o hpmufn.o tracetst.o reapits.o utexttst.o ucsdetst.o spooftest.o -L../../tools/ctestfw -licutest -L../../lib -licui18n -L../../lib -licutu -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[2]: Nothing to be done for `all-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Making `check' in `testdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata/out/build/icudt49b -T ../../test/testdata/out/build -d ../../test/testdata/out -s ../../test/testdata/out/build -p testdata -m common ../../test/testdata/out/build/testdata.lst
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
make[1]: Making `check' in `intltest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ./intltest
-----------------------------------------------
IntlTest (C++) Test Suite for
International Components for Unicode 49.1.2
Bits: 32, Byte order: Big endian, Chars: ASCII
-----------------------------------------------
Options:
all (a) : On
Verbose (v) : Off
No error messages (n) : Off
Exhaustive (e) : Off
Leaks (l) : Off
Warn on missing data (w) : Off
Threads : 1
-----------------------------------------------
utility {
MultithreadTest {
TestThreads {
} OK: TestThreads ((1.8s))
TestMutex {
} OK: TestMutex
TestThreadedIntl {
} OK: TestThreadedIntl ((2.1s))
TestCollators {
} OK: TestCollators ((52.5s))
TestString {
} OK: TestString ( 1.17s )
} OK: MultithreadTest ((57.7s))
StringTest {
TestEndian {
} OK: TestEndian
TestSizeofTypes {
} OK: TestSizeofTypes
TestCharsetFamily {
} OK: TestCharsetFamily
Test_U_STRING {
} OK: Test_U_STRING
Test_UNICODE_STRING {
} OK: Test_UNICODE_STRING
Test_UNICODE_STRING_SIMPLE {
} OK: Test_UNICODE_STRING_SIMPLE
Test_UTF8_COUNT_TRAIL_BYTES {
} OK: Test_UTF8_COUNT_TRAIL_BYTES
TestSTLCompatibility {
} OK: TestSTLCompatibility
TestStringPiece {
} OK: TestStringPiece (62ms)
TestStringPieceComparisons {
} OK: TestStringPieceComparisons
TestByteSink {
} OK: TestByteSink (17ms)
TestCheckedArrayByteSink {
} OK: TestCheckedArrayByteSink (9ms)
TestStringByteSink {
} OK: TestStringByteSink
TestCharString {
} OK: TestCharString (25ms)
} OK: StringTest (163ms)
UnicodeStringTest {
StringCaseTest {
TestCaseConversion {
} OK: TestCaseConversion (16ms)
TestCasing {
} OK: TestCasing (520ms)
TestFullCaseFoldingIterator {
} OK: TestFullCaseFoldingIterator
} OK: StringCaseTest (543ms)
TestBasicManipulation {
} OK: TestBasicManipulation (150ms)
TestCompare {
} OK: TestCompare
TestExtract {
} OK: TestExtract (11ms)
TestRemoveReplace {
} OK: TestRemoveReplace
TestSearching {
} OK: TestSearching
TestSpacePadding {
} OK: TestSpacePadding
TestPrefixAndSuffix {
} OK: TestPrefixAndSuffix
TestFindAndReplace {
} OK: TestFindAndReplace
TestBogus {
} OK: TestBogus
TestReverse {
} OK: TestReverse
TestMiscellaneous {
} OK: TestMiscellaneous
TestStackAllocation {
} OK: TestStackAllocation
TestUnescape {
} OK: TestUnescape
TestCountChar32 {
} OK: TestCountChar32
TestStringEnumeration {
} OK: TestStringEnumeration
TestNameSpace {
} OK: TestNameSpace
TestUTF32 {
} OK: TestUTF32
TestUTF8 {
} OK: TestUTF8
TestReadOnlyAlias {
} OK: TestReadOnlyAlias
TestAppendable {
} OK: TestAppendable
TestUnicodeStringImplementsAppendable {
} OK: TestUnicodeStringImplementsAppendable
TestSizeofUnicodeString {
} OK: TestSizeofUnicodeString
TestStartsWithAndEndsWithNulTerminated {
} OK: TestStartsWithAndEndsWithNulTerminated
} OK: UnicodeStringTest (761ms)
LocaleTest {
TestBasicGetters {
} OK: TestBasicGetters
TestSimpleResourceInfo {
} OK: TestSimpleResourceInfo
TestDisplayNames {
} OK: TestDisplayNames (102ms)
TestSimpleObjectStuff {
} OK: TestSimpleObjectStuff (14ms)
TestPOSIXParsing {
} OK: TestPOSIXParsing
TestGetAvailableLocales {
} OK: TestGetAvailableLocales (30ms)
TestDataDirectory {
} OK: TestDataDirectory
TestISO3Fallback {
} OK: TestISO3Fallback
TestGetLangsAndCountries {
} OK: TestGetLangsAndCountries (191ms)
TestSimpleDisplayNames {
} OK: TestSimpleDisplayNames
TestUninstalledISO3Names {
} OK: TestUninstalledISO3Names
TestAtypicalLocales {
} OK: TestAtypicalLocales (22ms)
TestThaiCurrencyFormat {
} OK: TestThaiCurrencyFormat (45ms)
TestEuroSupport {
} OK: TestEuroSupport (240ms)
TestToString {
} OK: TestToString
Test4139940 {
} OK: Test4139940 (246ms)
Test4143951 {
} OK: Test4143951
Test4147315 {
} OK: Test4147315
Test4147317 {
} OK: Test4147317
Test4147552 {
} OK: Test4147552 (20ms)
TestVariantParsing {
} OK: TestVariantParsing
Test4105828 {
} OK: Test4105828 (46ms)
TestSetIsBogus {
} OK: TestSetIsBogus (16ms)
TestParallelAPIValues {
} OK: TestParallelAPIValues
TestKeywordVariants {
} OK: TestKeywordVariants
TestKeywordVariantParsing {
} OK: TestKeywordVariantParsing
TestSetKeywordValue {
} OK: TestSetKeywordValue
TestGetBaseName {
} OK: TestGetBaseName
TestGetLocale {
} OK: TestGetLocale (33ms)
TestVariantWithOutCountry {
} OK: TestVariantWithOutCountry
TestCanonicalization {
} OK: TestCanonicalization (15ms)
TestCurrencyByDate {
} OK: TestCurrencyByDate (9ms)
TestGetVariantWithKeywords {
} OK: TestGetVariantWithKeywords
} OK: LocaleTest ( 1.16s )
CharIterTest {
TestConstructionAndEquality {
} OK: TestConstructionAndEquality
TestConstructionAndEqualityUChariter {
} OK: TestConstructionAndEqualityUChariter
TestIteration {
} OK: TestIteration
TestIterationUChar32 {
} OK: TestIterationUChar32
TestUCharIterator {
} OK: TestUCharIterator
TestCoverage {
} OK: TestCoverage
TestCharIteratorSubClasses {
} OK: TestCharIteratorSubClasses
} OK: CharIterTest (29ms)
UObjectTest {
testIDs {
} OK: testIDs ((1.5s))
testUMemory {
} OK: testUMemory
TestMFCCompatibility {
} OK: TestMFCCompatibility
TestCompilerRTTI {
} OK: TestCompilerRTTI
} OK: UObjectTest ((1.6s))
UnicodeTest {
TestAdditionalProperties {
} OK: TestAdditionalProperties ((23.2s))
TestBinaryValues {
} OK: TestBinaryValues (203ms)
TestConsistency {
} OK: TestConsistency (28ms)
TestPatternProperties {
} OK: TestPatternProperties (47ms)
} OK: UnicodeTest ((23.5s))
ResourceBundleTest {
TestResourceBundles {
} OK: TestResourceBundles (144ms)
TestConstruction {
} OK: TestConstruction
TestGetSize {
} OK: TestGetSize
TestGetLocaleByType {
} OK: TestGetLocaleByType
TestExemplar {
} OK: TestExemplar (163ms)
} OK: ResourceBundleTest (611ms)
NewResourceBundleTest {
TestResourceBundles {
} OK: TestResourceBundles (791ms)
TestConstruction {
} OK: TestConstruction
TestIteration {
} OK: TestIteration
TestOtherAPI {
} OK: TestOtherAPI
TestNewTypes {
} OK: TestNewTypes
TestGetByFallback {
} OK: TestGetByFallback
} OK: NewResourceBundleTest (820ms)
PUtilTest {
testMaxMin {
} OK: testMaxMin
testNaN {
} OK: testNaN
testPositiveInfinity {
} OK: testPositiveInfinity
testNegativeInfinity {
} OK: testNegativeInfinity
testZero {
} OK: testZero
} OK: PUtilTest (23ms)
UVector32Test {
UVector32_API {
} OK: UVector32_API
} OK: UVector32Test (76ms)
UVectorTest {
UVector_API {
} OK: UVector_API
UStack_API {
} OK: UStack_API
Hashtable_API {
} OK: Hashtable_API
} OK: UVectorTest
UTextTest {
TextTest {
} OK: TextTest ((10.2s))
ErrorTest {
} OK: ErrorTest
FreezeTest {
} OK: FreezeTest
Ticket5560 {
} OK: Ticket5560
Ticket6847 {
} OK: Ticket6847
} OK: UTextTest ((10.3s))
LocaleAliasTest {
TestCalendar {
} OK: TestCalendar
TestDateFormat {
} OK: TestDateFormat
TestCollation {
} OK: TestCollation
TestULocale {
} OK: TestULocale
TestUResourceBundle {
} OK: TestUResourceBundle
TestDisplayName {
} OK: TestDisplayName
} OK: LocaleAliasTest (84ms)
UnicodeSetTest {
TestPatterns {
} OK: TestPatterns
TestAddRemove {
} OK: TestAddRemove (6ms)
TestCategories {
} OK: TestCategories (35ms)
TestCloneEqualHash {
} OK: TestCloneEqualHash (29ms)
TestMinimalRep {
} OK: TestMinimalRep
TestAPI {
} OK: TestAPI
TestScriptSet {
} OK: TestScriptSet (25ms)
TestPropertySet {
} OK: TestPropertySet (251ms)
TestClone {
} OK: TestClone
TestExhaustive {
} OK: TestExhaustive ((6.2s))
TestToPattern {
} OK: TestToPattern (598ms)
TestIndexOf {
} OK: TestIndexOf
TestStrings {
} OK: TestStrings
Testj2268 {
} OK: Testj2268
TestCloseOver {
} OK: TestCloseOver (10ms)
TestEscapePattern {
} OK: TestEscapePattern
TestInvalidCodePoint {
} OK: TestInvalidCodePoint (6ms)
TestSymbolTable {
} OK: TestSymbolTable
TestSurrogate {
} OK: TestSurrogate
TestPosixClasses {
} OK: TestPosixClasses (348ms)
TestIteration {
} OK: TestIteration
TestFreezable {
} OK: TestFreezable (35ms)
TestSpan {
} OK: TestSpan ((16.1s))
TestStringSpan {
} OK: TestStringSpan
} OK: UnicodeSetTest ((23.7s))
ErrorCodeTest {
TestErrorCode {
} OK: TestErrorCode
TestSubclass {
} OK: TestSubclass
} OK: ErrorCodeTest
LocalPointerTest {
TestLocalPointer {
} OK: TestLocalPointer
TestLocalArray {
} OK: TestLocalArray
TestLocalXyzPointer {
} OK: TestLocalXyzPointer (701ms)
TestLocalXyzPointerNull {
} OK: TestLocalXyzPointerNull (66ms)
} OK: LocalPointerTest (777ms)
BytesTrieTest {
TestBuilder {
} OK: TestBuilder
TestEmpty {
} OK: TestEmpty
Test_a {
} OK: Test_a
Test_a_ab {
} OK: Test_a_ab
TestShortestBranch {
} OK: TestShortestBranch
TestBranches {
TestBranches length=2
TestBranches length=3
TestBranches length=4
TestBranches length=5
TestBranches length=6
TestBranches length=7
TestBranches length=8
TestBranches length=9
TestBranches length=10
TestBranches length=11
TestBranches length=12
TestBranches length=13
TestBranches length=14
} OK: TestBranches (31ms)
TestLongSequence {
} OK: TestLongSequence
TestLongBranch {
} OK: TestLongBranch
TestValuesForState {
} OK: TestValuesForState
TestCompact {
} OK: TestCompact
TestHasUniqueValue {
} OK: TestHasUniqueValue
TestGetNextBytes {
} OK: TestGetNextBytes
TestIteratorFromBranch {
} OK: TestIteratorFromBranch
TestIteratorFromLinearMatch {
} OK: TestIteratorFromLinearMatch
TestTruncatingIteratorFromRoot {
} OK: TestTruncatingIteratorFromRoot
TestTruncatingIteratorFromLinearMatchShort {
} OK: TestTruncatingIteratorFromLinearMatchShort
TestTruncatingIteratorFromLinearMatchLong {
} OK: TestTruncatingIteratorFromLinearMatchLong
TestIteratorFromBytes {
} OK: TestIteratorFromBytes
} OK: BytesTrieTest (87ms)
UCharsTrieTest {
TestBuilder {
} OK: TestBuilder
TestEmpty {
} OK: TestEmpty
Test_a {
} OK: Test_a
Test_a_ab {
} OK: Test_a_ab
TestShortestBranch {
} OK: TestShortestBranch
TestBranches {
TestBranches length=2
TestBranches length=3
TestBranches length=4
TestBranches length=5
TestBranches length=6
TestBranches length=7
TestBranches length=8
TestBranches length=9
TestBranches length=10
TestBranches length=11
TestBranches length=12
TestBranches length=13
TestBranches length=14
} OK: TestBranches (181ms)
TestLongSequence {
} OK: TestLongSequence
TestLongBranch {
} OK: TestLongBranch (33ms)
TestValuesForState {
} OK: TestValuesForState
TestCompact {
} OK: TestCompact (26ms)
TestFirstForCodePoint {
} OK: TestFirstForCodePoint (10ms)
TestNextForCodePoint {
} OK: TestNextForCodePoint
TestLargeTrie {
buildLargeTrie(1111) added 38236 strings
} OK: TestLargeTrie ((2.4s))
TestHasUniqueValue {
} OK: TestHasUniqueValue
TestGetNextUChars {
} OK: TestGetNextUChars
TestIteratorFromBranch {
} OK: TestIteratorFromBranch
TestIteratorFromLinearMatch {
} OK: TestIteratorFromLinearMatch
TestTruncatingIteratorFromRoot {
} OK: TestTruncatingIteratorFromRoot
TestTruncatingIteratorFromLinearMatchShort {
} OK: TestTruncatingIteratorFromLinearMatchShort
TestTruncatingIteratorFromLinearMatchLong {
} OK: TestTruncatingIteratorFromLinearMatchLong
TestIteratorFromUChars {
} OK: TestIteratorFromUChars
} OK: UCharsTrieTest ((2.7s))
} OK: utility [(2m 4.0s)]
normalize {
BasicNormalizerTest {
TestDecomp {
} OK: TestDecomp (7ms)
TestCompatDecomp {
} OK: TestCompatDecomp
TestCanonCompose {
} OK: TestCanonCompose (8ms)
TestCompatCompose {
} OK: TestCompatCompose
TestPrevious {
} OK: TestPrevious
TestHangulDecomp {
} OK: TestHangulDecomp
TestHangulCompose {
} OK: TestHangulCompose
TestTibetan {
} OK: TestTibetan
TestCompositionExclusion {
} OK: TestCompositionExclusion
TestZeroIndex {
} OK: TestZeroIndex
TestVerisign {
} OK: TestVerisign
TestPreviousNext {
} OK: TestPreviousNext
TestNormalizerAPI {
} OK: TestNormalizerAPI (11ms)
TestConcatenate {
} OK: TestConcatenate
FindFoldFCDExceptions {
} OK: FindFoldFCDExceptions ((7.0s))
TestCompare {
} OK: TestCompare (801ms)
TestSkippable {
} OK: TestSkippable ((11.7s))
TestCustomComp {
} OK: TestCustomComp (68ms)
TestCustomFCC {
} OK: TestCustomFCC
TestFilteredNormalizer2Coverage {
} OK: TestFilteredNormalizer2Coverage
} OK: BasicNormalizerTest ((19.7s))
NormalizerConformanceTest {
TestConformance {
} OK: TestConformance ((14.9s))
TestConformance32 {
} OK: TestConformance32 ((22.0s))
} OK: NormalizerConformanceTest ((37.0s))
CanonicalIteratorTest {
TestBasic {
} OK: TestBasic (11ms)
TestExhaustive {
} OK: TestExhaustive ((17.2s))
TestAPI {
} OK: TestAPI
} OK: CanonicalIteratorTest ((17.2s))
} OK: normalize ((73.9s))
collate {
CollationEnglishTest {
TestPrimary {
} OK: TestPrimary
TestSecondary {
} OK: TestSecondary (512ms)
TestTertiary {
} OK: TestTertiary (94ms)
} OK: CollationEnglishTest (636ms)
CollationFrenchTest {
TestSecondary {
} OK: TestSecondary (569ms)
TestTertiary {
} OK: TestTertiary (11ms)
TestExtra {
} OK: TestExtra (30ms)
} OK: CollationFrenchTest (693ms)
CollationGermanTest {
TestPrimary {
} OK: TestPrimary (14ms)
TestTertiary {
} OK: TestTertiary (18ms)
} OK: CollationGermanTest (45ms)
CollationSpanishTest {
TestPrimary {
} OK: TestPrimary
TestTertiary {
} OK: TestTertiary
} OK: CollationSpanishTest (80ms)
CollationKanaTest {
TestTertiary {
} OK: TestTertiary (11ms)
TestBase {
} OK: TestBase
TestSmallLarge {
} OK: TestSmallLarge (6ms)
TestTestPlainDakutenHandakuten {
} OK: TestTestPlainDakutenHandakuten (6ms)
TestKatakanaHiragana {
} OK: TestKatakanaHiragana (7ms)
TestChooonKigoo {
} OK: TestChooonKigoo (18ms)
} OK: CollationKanaTest (91ms)
CollationTurkishTest {
TestPrimary {
} OK: TestPrimary
TestTertiary {
} OK: TestTertiary (6ms)
} OK: CollationTurkishTest (15ms)
CollationDummyTest {
TestPrimary {
} OK: TestPrimary (9ms)
TestSecondary {
} OK: TestSecondary (8ms)
TestTertiary {
} OK: TestTertiary (22ms)
TestExtra {
} OK: TestExtra (77ms)
TestIdentical {
} OK: TestIdentical (6ms)
TestJB581 {
} OK: TestJB581
} OK: CollationDummyTest ( 0.94s )
G7CollationTest {
TestG7Locales {
} OK: TestG7Locales ((3.6s))
TestDemo1 {
} OK: TestDemo1 (855ms)
TestDemo2 {
} OK: TestDemo2 ( 1.06s )
TestDemo3 {
} OK: TestDemo3 ( 1.05s )
TestDemo4 {
} OK: TestDemo4 ( 1.10s )
} OK: G7CollationTest ((7.6s))
CollationMonkeyTest {
TestCompare {
} OK: TestCompare
TestCollationKey {
} OK: TestCollationKey
TestRules {
} OK: TestRules ((1.6s))
} OK: CollationMonkeyTest ((1.6s))
CollationAPITest {
TestProperty {
} OK: TestProperty (70ms)
TestOperators {
} OK: TestOperators ((3.9s))
TestDuplicate {
} OK: TestDuplicate (794ms)
TestCompare {
} OK: TestCompare
TestHashCode {
} OK: TestHashCode
TestCollationKey {
} OK: TestCollationKey
TestElemIter {
} OK: TestElemIter
TestGetAll {
} OK: TestGetAll (137ms)
TestRuleBasedColl {
} OK: TestRuleBasedColl ((2.4s))
TestDecomposition {
} OK: TestDecomposition (11ms)
TestSafeClone {
} OK: TestSafeClone (113ms)
TestSortKey {
} OK: TestSortKey
TestSortKeyOverflow {
} OK: TestSortKeyOverflow ((2.5s))
TestMaxExpansion {
} OK: TestMaxExpansion ((2.5s))
TestDisplayName {
} OK: TestDisplayName
TestAttribute {
} OK: TestAttribute
TestVariableTopSetting {
} OK: TestVariableTopSetting
TestRules {
} OK: TestRules (17ms)
TestGetLocale {
} OK: TestGetLocale (809ms)
TestBounds {
} OK: TestBounds (29ms)
TestGetTailoredSet {
} OK: TestGetTailoredSet ((1.6s))
TestUClassID {
} OK: TestUClassID
TestSubclass {
} OK: TestSubclass
TestNULLCharTailoring {
} OK: TestNULLCharTailoring (791ms)
TestClone {
} OK: TestClone
} OK: CollationAPITest ((15.9s))
CollationRegressionTest {
Test4048446 {
} OK: Test4048446 (75ms)
Test4051866 {
} OK: Test4051866 ((1.6s))
Test4053636 {
} OK: Test4053636
Test4054238 {
} OK: Test4054238
Test4054734 {
} OK: Test4054734 (63ms)
Test4054736 {
} OK: Test4054736
Test4058613 {
} OK: Test4058613
Test4059820 {
} OK: Test4059820 (792ms)
Test4060154 {
} OK: Test4060154 (794ms)
Test4062418 {
} OK: Test4062418 (75ms)
Test4065540 {
} OK: Test4065540
Test4066189 {
} OK: Test4066189
Test4066696 {
} OK: Test4066696
Test4076676 {
} OK: Test4076676
Test4078588 {
} OK: Test4078588 (791ms)
Test4079231 {
} OK: Test4079231
Test4081866 {
} OK: Test4081866
Test4087241 {
} OK: Test4087241
Test4087243 {
} OK: Test4087243
Test4092260 {
} OK: Test4092260
Test4095316 {
} OK: Test4095316
Test4101940 {
} OK: Test4101940 (795ms)
Test4103436 {
} OK: Test4103436
Test4114076 {
} OK: Test4114076
Test4114077 {
} OK: Test4114077
Test4124632 {
} OK: Test4124632
Test4132736 {
} OK: Test4132736
Test4133509 {
} OK: Test4133509
Test4139572 {
} OK: Test4139572
Test4141640 {
} OK: Test4141640 (651ms)
Test4146160 {
} OK: Test4146160
TestT7189 {
} OK: TestT7189 (32ms)
TestCaseFirstCompression {
} OK: TestCaseFirstCompression (11ms)
} OK: CollationRegressionTest ((5.8s))
CollationCurrencyTest {
currencyTest {
} OK: currencyTest (61ms)
} OK: CollationCurrencyTest (84ms)
CollationIteratorTest {
TestPrevious {
} OK: TestPrevious ((2.4s))
TestOffset {
} OK: TestOffset
TestSetText {
} OK: TestSetText
TestMaxExpansion {
} OK: TestMaxExpansion ((1.6s))
TestClearBuffers {
} OK: TestClearBuffers (786ms)
TestUnicodeChar {
} OK: TestUnicodeChar (612ms)
TestAssignment {
} OK: TestAssignment
TestConstructors {
} OK: TestConstructors
TestStrengthOrder {
} OK: TestStrengthOrder
} OK: CollationIteratorTest ((5.4s))
CollationThaiTest {
TestDictionary {
} OK: TestDictionary ((68.2s))
TestCornerCases {
} OK: TestCornerCases (22ms)
TestNamesList {
} OK: TestNamesList
TestInvalidThai {
} OK: TestInvalidThai
TestReordering {
} OK: TestReordering (850ms)
} OK: CollationThaiTest ((69.1s))
LotusCollationKoreanTest {
TestTertiary {
} OK: TestTertiary
} OK: LotusCollationKoreanTest
StringSearchTest {
TestOpenClose {
} OK: TestOpenClose (77ms)
TestInitialization {
} OK: TestInitialization (7ms)
TestBasic {
} OK: TestBasic (37ms)
TestNormExact {
} OK: TestNormExact (37ms)
TestStrength {
} OK: TestStrength (323ms)
TestBreakIterator {
} OK: TestBreakIterator (29ms)
TestVariable {
} OK: TestVariable (17ms)
TestOverlap {
} OK: TestOverlap (6ms)
TestCollator {
} OK: TestCollator (781ms)
TestPattern {
} OK: TestPattern
TestText {
} OK: TestText
TestCompositeBoundaries {
} OK: TestCompositeBoundaries (53ms)
TestGetSetOffset {
} OK: TestGetSetOffset
TestGetSetAttribute {
} OK: TestGetSetAttribute
TestGetMatch {
} OK: TestGetMatch
TestSetMatch {
} OK: TestSetMatch
TestReset {
} OK: TestReset
TestSupplementary {
} OK: TestSupplementary (20ms)
TestContraction {
} OK: TestContraction (792ms)
TestIgnorable {
} OK: TestIgnorable (784ms)
TestCanonical {
} OK: TestCanonical (20ms)
TestNormCanonical {
} OK: TestNormCanonical (6ms)
TestStrengthCanonical {
} OK: TestStrengthCanonical (11ms)
TestBreakIteratorCanonical {
} OK: TestBreakIteratorCanonical (29ms)
TestVariableCanonical {
} OK: TestVariableCanonical (9ms)
TestOverlapCanonical {
} OK: TestOverlapCanonical
TestCollatorCanonical {
} OK: TestCollatorCanonical (780ms)
TestPatternCanonical {
} OK: TestPatternCanonical
TestTextCanonical {
} OK: TestTextCanonical
TestCompositeBoundariesCanonical {
} OK: TestCompositeBoundariesCanonical (26ms)
TestGetSetOffsetCanonical {
} OK: TestGetSetOffsetCanonical
TestSupplementaryCanonical {
} OK: TestSupplementaryCanonical (11ms)
TestContractionCanonical {
} OK: TestContractionCanonical (793ms)
TestUClassID {
} OK: TestUClassID
TestSubclass {
} OK: TestSubclass
TestCoverage {
} OK: TestCoverage
TestDiacriticMatch {
} OK: TestDiacriticMatch (6ms)
} OK: StringSearchTest ((6.4s))
ContractionTableTest {
TestGrowTable {
} OK: TestGrowTable (47ms)
TestSetContraction {
} OK: TestSetContraction
TestAddATableElement {
} OK: TestAddATableElement ((6.2s))
TestClone {
} OK: TestClone ( 1.13s )
TestChangeContraction {
} OK: TestChangeContraction
TestChangeLastCE {
} OK: TestChangeLastCE (128ms)
TestErrorCodeChecking {
} OK: TestErrorCodeChecking
} OK: ContractionTableTest ((8.0s))
DataDrivenCollatorTest {
TestAlbanian {
} OK: TestAlbanian (824ms)
TestEstonian {
} OK: TestEstonian (219ms)
TestJavaStyleRule {
} OK: TestJavaStyleRule ( 0.95s )
TestLatvian {
} OK: TestLatvian (508ms)
TestLithuanian {
} OK: TestLithuanian (60ms)
TestMorePinyin {
} OK: TestMorePinyin (245ms)
TestNShiftedIgnorable {
} OK: TestNShiftedIgnorable (163ms)
TestSafeSurrogates {
} OK: TestSafeSurrogates ( 0.98s )
TestShiftedIgnorable {
} OK: TestShiftedIgnorable (200ms)
TestSimplifiedChineseOrder {
} OK: TestSimplifiedChineseOrder
TestThaiPartialSortKeyProblems {
} OK: TestThaiPartialSortKeyProblems (30ms)
TestTibetanNormalizedIterativeCrash {
} OK: TestTibetanNormalizedIterativeCrash
da_TestPrimary {
} OK: da_TestPrimary (44ms)
da_TestTertiary {
} OK: da_TestTertiary ((4.2s))
hi_TestNewRules {
} OK: hi_TestNewRules (26ms)
ro_TestNewRules {
} OK: ro_TestNewRules ((1.6s))
testOffsets {
} OK: testOffsets (71ms)
} OK: DataDrivenCollatorTest ((10.5s))
UCAConformanceTest {
TestTableNonIgnorable {
} OK: TestTableNonIgnorable ((11.2s))
TestTableShifted {
} OK: TestTableShifted ((13.9s))
TestRulesNonIgnorable {
} OK: TestRulesNonIgnorable ((46.6s))
TestRulesShifted {
} OK: TestRulesShifted (52ms)
} OK: UCAConformanceTest ((72.4s))
CollationServiceTest {
TestRegister {
} OK: TestRegister ((1.5s))
TestRegisterFactory {
} OK: TestRegisterFactory (343ms)
TestSeparateTree {
} OK: TestSeparateTree (253ms)
} OK: CollationServiceTest ((2.2s))
CollationFinnishTest {
TestPrimary {
} OK: TestPrimary
TestTertiary {
} OK: TestTertiary
} OK: CollationFinnishTest (57ms)
SSearchTest {
searchTest {
} OK: searchTest (636ms)
offsetTest {
} OK: offsetTest (14ms)
monkeyTest {
} OK: monkeyTest ((40.5s))
bmMonkeyTest {
} OK: bmMonkeyTest ((28.2s))
boyerMooreTest {
} OK: boyerMooreTest (53ms)
goodSuffixTest {
} OK: goodSuffixTest ((2.9s))
searchTime {
} OK: searchTime ((14.8s))
bmsTest {
} OK: bmsTest ( 1.20s )
bmSearchTest {
} OK: bmSearchTest ((45.1s))
udhrTest {
Could not open the input file udhr_eng.txt. Test skipped
Could not open the input file udhr_deu_1996.txt. Test skipped
Could not open the input file udhr_fra.txt. Test skipped
Could not open the input file udhr_rus.txt. Test skipped
Could not open the input file udhr_tha.txt. Test skipped
Could not open the input file udhr_jpn.txt. Test skipped
Could not open the input file udhr_kor.txt. Test skipped
Could not open the input file udhr_cmn_hans.txt. Test skipped
Could not open the input file udhr_cmn_hant.txt. Test skipped
} OK: udhrTest (705ms)
stringListTest {
} OK: stringListTest
} OK: SSearchTest [(2m 14.4s)]
AlphabeticIndexTest {
APITest {
} OK: APITest ((2.3s))
ManyLocales {
} OK: ManyLocales ((11.5s))
HackPinyinTest {
} OK: HackPinyinTest ((6.4s))
TestBug9009 {
} OK: TestBug9009 (146ms)
} OK: AlphabeticIndexTest ((20.5s))
} OK: collate [(6m 3.0s)]
regex {
Basic {
} OK: Basic (143ms)
API_Match {
} OK: API_Match ((7.5s))
API_Replace {
} OK: API_Replace (335ms)
API_Pattern {
} OK: API_Pattern (298ms)
Extended {
} OK: Extended ((12.8s))
Errors {
} OK: Errors (64ms)
PerlTests {
} OK: PerlTests ( 1.16s )
Callbacks {
} OK: Callbacks (123ms)
FindProgressCallbacks {
} OK: FindProgressCallbacks ( 0.94s )
Bug 6149 {
} OK: Bug 6149 ( 1.25s )
UTextBasic {
} OK: UTextBasic
API_Match_UTF8 {
} OK: API_Match_UTF8 (21ms)
API_Replace_UTF8 {
} OK: API_Replace_UTF8 (28ms)
API_Pattern_UTF8 {
} OK: API_Pattern_UTF8 (31ms)
PerlTestsUTF8 {
} OK: PerlTestsUTF8 ( 1.20s )
PreAllocatedUTextCAPI {
} OK: PreAllocatedUTextCAPI (115ms)
Bug 7651 {
} OK: Bug 7651 (7ms)
Bug 7740 {
} OK: Bug 7740
Bug 8479 {
} OK: Bug 8479
Bug 7029 {
} OK: Bug 7029
CheckInvBufSize {
} OK: CheckInvBufSize
Bug 9283 {
} OK: Bug 9283 (128ms)
} OK: regex ((26.5s))
format {
IntlTestDateFormat {
GenericTest {
} OK: GenericTest (468ms)
DefaultLocale {
} OK: DefaultLocale ( 1.24s )
TestAvailableLocales {
} OK: TestAvailableLocales (89ms)
MonsterTest {
} OK: MonsterTest ((3.4s))
} OK: IntlTestDateFormat ((5.6s))
IntlTestNumberFormat {
createInstance {
} OK: createInstance (51ms)
DefaultLocale {
} OK: DefaultLocale (327ms)
testAvailableLocales {
} OK: testAvailableLocales
monsterTest {
} OK: monsterTest ((1.9s))
} OK: IntlTestNumberFormat ((2.3s))
CalendarTest {
TestDOW943 {
} OK: TestDOW943 (30ms)
TestClonesUnique908 {
} OK: TestClonesUnique908
TestGregorianChange768 {
} OK: TestGregorianChange768 (11ms)
TestDisambiguation765 {
} OK: TestDisambiguation765 (11ms)
TestGMTvsLocal4064654 {
} OK: TestGMTvsLocal4064654 (10ms)
TestAddSetOrder621 {
} OK: TestAddSetOrder621
TestAdd520 {
} OK: TestAdd520
TestFieldSet4781 {
} OK: TestFieldSet4781
TestSerialize337 {
} OK: TestSerialize337
TestSecondsZero121 {
} OK: TestSecondsZero121
TestAddSetGet0610 {
} OK: TestAddSetGet0610
TestFields060 {
} OK: TestFields060
TestEpochStartFields {
} OK: TestEpochStartFields
TestDOWProgression {
} OK: TestDOWProgression (12ms)
TestGenericAPI {
} OK: TestGenericAPI (715ms)
TestAddRollExtensive {
} OK: TestAddRollExtensive ((4.0s))
TestDOW_LOCALandYEAR_WOY {
} OK: TestDOW_LOCALandYEAR_WOY (264ms)
TestWOY {
} OK: TestWOY (272ms)
TestRog {
} OK: TestRog
TestYWOY {
} OK: TestYWOY (8ms)
TestJD {
} OK: TestJD
TestDebug {
} OK: TestDebug (74ms)
Test6703 {
} OK: Test6703
Test3785 {
} OK: Test3785 (29ms)
Test1624 {
} OK: Test1624 (677ms)
TestTimeStamp {
} OK: TestTimeStamp ( 1.39s )
TestISO8601 {
} OK: TestISO8601 (11ms)
TestAmbiguousWallTimeAPIs {
} OK: TestAmbiguousWallTimeAPIs
TestRepeatedWallTime {
} OK: TestRepeatedWallTime (92ms)
TestSkippedWallTime {
} OK: TestSkippedWallTime (29ms)
TestCloneLocale {
} OK: TestCloneLocale
} OK: CalendarTest ((7.8s))
CalendarLimitTest {
TestCalendarExtremeLimit {
} OK: TestCalendarExtremeLimit (155ms)
TestLimits {
} OK: TestLimits [(3m 38.9s)]
} OK: CalendarLimitTest [(3m 39.0s)]
TimeZoneTest {
TestPRTOffset {
} OK: TestPRTOffset
TestVariousAPI518 {
} OK: TestVariousAPI518
TestGetAvailableIDs913 {
} OK: TestGetAvailableIDs913 (482ms)
TestGenericAPI {
} OK: TestGenericAPI
TestRuleAPI {
} OK: TestRuleAPI (58ms)
TestShortZoneIDs {
} OK: TestShortZoneIDs (37ms)
TestCustomParse {
} OK: TestCustomParse (42ms)
TestDisplayName {
} OK: TestDisplayName (255ms)
TestDSTSavings {
} OK: TestDSTSavings
TestAlternateRules {
} OK: TestAlternateRules
TestCountries {
} OK: TestCountries (247ms)
TestHistorical {
} OK: TestHistorical (21ms)
TestEquivalentIDs {
} OK: TestEquivalentIDs
TestAliasedNames {
} OK: TestAliasedNames (159ms)
TestFractionalDST {
} OK: TestFractionalDST
TestFebruary {
} OK: TestFebruary
TestCanonicalID {
} OK: TestCanonicalID (353ms)
TestDisplayNamesMeta {
} OK: TestDisplayNamesMeta (21ms)
TestGetRegion {
} OK: TestGetRegion
TestGetAvailableIDsNew {
} OK: TestGetAvailableIDsNew ((24.9s))
TestGetUnknown {
} OK: TestGetUnknown
} OK: TimeZoneTest ((26.9s))
TimeZoneBoundaryTest {
TestBoundaries {
} OK: TestBoundaries (129ms)
TestNewRules {
} OK: TestNewRules (109ms)
TestStepwise {
} OK: TestStepwise (22ms)
} OK: TimeZoneBoundaryTest (602ms)
TestChoiceFormat {
TestSimpleExample {
} OK: TestSimpleExample
TestComplexExample {
} OK: TestComplexExample (12ms)
TestClosures {
} OK: TestClosures
TestPatterns {
} OK: TestPatterns
TestChoiceFormatToPatternOverflow {
} OK: TestChoiceFormatToPatternOverflow
} OK: TestChoiceFormat (206ms)
IntlTestDecimalFormatSymbols {
DecimalFormatSymbols test {
} OK: DecimalFormatSymbols test (32ms)
} OK: IntlTestDecimalFormatSymbols (35ms)
IntlTestDateFormatSymbols {
TestSymbols {
} OK: TestSymbols (408ms)
TestGetMonths {
} OK: TestGetMonths
TestGetMonths2 {
} OK: TestGetMonths2
TestGetWeekdays2 {
} OK: TestGetWeekdays2
TestGetEraNames {
} OK: TestGetEraNames
} OK: IntlTestDateFormatSymbols (430ms)
IntlTestDecimalFormatAPI {
DecimalFormat API test {
} OK: DecimalFormat API test (17ms)
Rounding test {
} OK: Rounding test (11ms)
Test6354 {
} OK: Test6354
TestCurrencyPluralInfo {
} OK: TestCurrencyPluralInfo
} OK: IntlTestDecimalFormatAPI (61ms)
TestFormatSmallClasses {
pp {
} OK: pp
fp {
} OK: fp
fpe {
} OK: fpe
ft {
} OK: ft
} OK: TestFormatSmallClasses (7ms)
IntlTestNumberFormatAPI {
NumberFormat API test {
} OK: NumberFormat API test (23ms)
NumberFormatRegistration {
} OK: NumberFormatRegistration (64ms)
} OK: IntlTestNumberFormatAPI (109ms)
IntlTestSimpleDateFormatAPI {
SimpleDateFormat API test {
} OK: SimpleDateFormat API test (384ms)
} OK: IntlTestSimpleDateFormatAPI (388ms)
IntlTestDateFormatAPI {
DateFormat API test {
} OK: DateFormat API test (189ms)
TestEquals {
} OK: TestEquals (13ms)
TestNameHiding {
} OK: TestNameHiding (23ms)
TestCoverage {
} OK: TestCoverage (397ms)
} OK: IntlTestDateFormatAPI (631ms)
DateFormatTest {
TestEquals {
} OK: TestEquals (28ms)
TestTwoDigitYearDSTParse {
} OK: TestTwoDigitYearDSTParse (26ms)
TestFieldPosition {
} OK: TestFieldPosition (338ms)
TestPartialParse994 {
} OK: TestPartialParse994 (12ms)
TestRunTogetherPattern985 {
} OK: TestRunTogetherPattern985 (8ms)
TestRunTogetherPattern917 {
} OK: TestRunTogetherPattern917 (14ms)
TestCzechMonths459 {
} OK: TestCzechMonths459 (68ms)
TestLetterDPattern212 {
} OK: TestLetterDPattern212 (14ms)
TestDayOfYearPattern195 {
} OK: TestDayOfYearPattern195 (12ms)
TestQuotePattern161 {
} OK: TestQuotePattern161 (8ms)
TestBadInput135 {
} OK: TestBadInput135 (505ms)
TestBadInput135a {
} OK: TestBadInput135a (65ms)
TestTwoDigitYear {
} OK: TestTwoDigitYear (10ms)
TestDateFormatZone061 {
} OK: TestDateFormatZone061 (9ms)
TestDateFormatZone146 {
} OK: TestDateFormatZone146 (49ms)
TestLocaleDateFormat {
} OK: TestLocaleDateFormat (17ms)
TestWallyWedel {
} OK: TestWallyWedel (701ms)
TestDateFormatCalendar {
} OK: TestDateFormatCalendar (20ms)
TestSpaceParsing {
} OK: TestSpaceParsing (91ms)
TestExactCountFormat {
} OK: TestExactCountFormat (27ms)
TestWhiteSpaceParsing {
} OK: TestWhiteSpaceParsing (21ms)
TestInvalidPattern {
} OK: TestInvalidPattern (6ms)
TestGeneral {
} OK: TestGeneral (43ms)
TestGreekMay {
} OK: TestGreekMay (8ms)
TestGenericTime {
} OK: TestGenericTime (211ms)
TestGenericTimeZoneOrder {
} OK: TestGenericTimeZoneOrder ((10.8s))
TestHost {
} OK: TestHost
TestEras {
} OK: TestEras (69ms)
TestNarrowNames {
} OK: TestNarrowNames (161ms)
TestStandAloneDays {
} OK: TestStandAloneDays (293ms)
TestStandAloneMonths {
} OK: TestStandAloneMonths (378ms)
TestQuarters {
} OK: TestQuarters (55ms)
TestZTimeZoneParsing {
} OK: TestZTimeZoneParsing (11ms)
TestRelative {
} OK: TestRelative (231ms)
TestRelativeClone {
} OK: TestRelativeClone (8ms)
TestHostClone {
} OK: TestHostClone (8ms)
TestTimeZoneDisplayName {
} OK: TestTimeZoneDisplayName ((6.2s))
TestRoundtripWithCalendar {
} OK: TestRoundtripWithCalendar (103ms)
Test6338 {
} OK: Test6338 (30ms)
Test6726 {
} OK: Test6726 (30ms)
TestGMTParsing {
} OK: TestGMTParsing (49ms)
Test6880 {
} OK: Test6880 (10ms)
TestISOEra {
} OK: TestISOEra (13ms)
TestFormalChineseDate {
} OK: TestFormalChineseDate (38ms)
TestNumberAsStringParsing {
} OK: TestNumberAsStringParsing (262ms)
TestStandAloneGMTParse {
} OK: TestStandAloneGMTParse (11ms)
TestParsePosition {
} OK: TestParsePosition (66ms)
TestMonthPatterns {
} OK: TestMonthPatterns ((10.9s))
TestContext {
} OK: TestContext (52ms)
} OK: DateFormatTest ((32.3s))
TestMessageFormat {
testBug1 {
} OK: testBug1
testBug2 {
} OK: testBug2
sample {
} OK: sample
PatternTest {
} OK: PatternTest (43ms)
testStaticFormat {
} OK: testStaticFormat (13ms)
testSimpleFormat {
} OK: testSimpleFormat
testMsgFormatChoice {
} OK: testMsgFormatChoice
testCopyConstructor {
} OK: testCopyConstructor
testAssignment {
} OK: testAssignment
testClone {
} OK: testClone
testEquals {
} OK: testEquals
testNotEquals {
} OK: testNotEquals
testSetLocale {
} OK: testSetLocale (21ms)
testFormat {
} OK: testFormat (7ms)
testParse {
} OK: testParse
testAdopt {
} OK: testAdopt (45ms)
testCopyConstructor2 {
} OK: testCopyConstructor2 (11ms)
TestUnlimitedArgsAndSubformats {
} OK: TestUnlimitedArgsAndSubformats (41ms)
TestRBNF {
} OK: TestRBNF (702ms)
TestTurkishCasing {
} OK: TestTurkishCasing (16ms)
testAutoQuoteApostrophe {
} OK: testAutoQuoteApostrophe
testMsgFormatPlural {
} OK: testMsgFormatPlural (17ms)
testMsgFormatSelect {
} OK: testMsgFormatSelect (14ms)
testApostropheInPluralAndSelect {
} OK: testApostropheInPluralAndSelect
TestApostropheMode {
} OK: TestApostropheMode
TestCompatibleApostrophe {
} OK: TestCompatibleApostrophe (8ms)
testCoverage {
} OK: testCoverage
TestTrimArgumentName {
} OK: TestTrimArgumentName
} OK: TestMessageFormat ( 1.03s )
NumberFormatTest {
TestCurrencySign {
} OK: TestCurrencySign (12ms)
TestCurrency {
} OK: TestCurrency (100ms)
TestParse {
} OK: TestParse
TestRounding487 {
} OK: TestRounding487
TestQuotes {
} OK: TestQuotes
TestExponential {
} OK: TestExponential (26ms)
TestPatterns {
} OK: TestPatterns
TestExponent {
} OK: TestExponent
TestScientific {
} OK: TestScientific (53ms)
TestPad {
} OK: TestPad (73ms)
TestPatterns2 {
} OK: TestPatterns2
TestSecondaryGrouping {
} OK: TestSecondaryGrouping (6ms)
TestSurrogateSupport {
} OK: TestSurrogateSupport (97ms)
TestAPI {
} OK: TestAPI
TestCurrencyObject {
} OK: TestCurrencyObject (46ms)
TestCurrencyPatterns {
} OK: TestCurrencyPatterns ((2.6s))
TestWhiteSpaceParsing {
} OK: TestWhiteSpaceParsing
TestComplexCurrency {
} OK: TestComplexCurrency
TestRegCurrency {
} OK: TestRegCurrency
TestSymbolsWithBadLocale {
} OK: TestSymbolsWithBadLocale (13ms)
TestAdoptDecimalFormatSymbols {
} OK: TestAdoptDecimalFormatSymbols (13ms)
TestScientific2 {
} OK: TestScientific2 (9ms)
TestScientificGrouping {
} OK: TestScientificGrouping (7ms)
TestInt64 {
} OK: TestInt64 (8ms)
TestPerMill {
} OK: TestPerMill (6ms)
TestIllegalPatterns {
} OK: TestIllegalPatterns
TestCases {
} OK: TestCases (205ms)
TestCurrencyNames {
} OK: TestCurrencyNames
TestCurrencyAmount {
} OK: TestCurrencyAmount
TestCurrencyUnit {
} OK: TestCurrencyUnit
TestCoverage {
} OK: TestCoverage
TestJB3832 {
} OK: TestJB3832 (6ms)
TestHost {
} OK: TestHost (104ms)
TestHostClone {
} OK: TestHostClone
TestCurrencyFormat {
} OK: TestCurrencyFormat (87ms)
TestRounding {
} OK: TestRounding ((1.8s))
TestNonpositiveMultiplier {
} OK: TestNonpositiveMultiplier (15ms)
TestNumberingSystems {
} OK: TestNumberingSystems (306ms)
TestSpaceParsing {
} OK: TestSpaceParsing (10ms)
TestMultiCurrencySign {
} OK: TestMultiCurrencySign (135ms)
TestCurrencyFormatForMixParsing {
} OK: TestCurrencyFormatForMixParsing (8ms)
TestDecimalFormatCurrencyParse {
} OK: TestDecimalFormatCurrencyParse (9ms)
TestCurrencyIsoPluralFormat {
} OK: TestCurrencyIsoPluralFormat (442ms)
TestCurrencyParsing {
} OK: TestCurrencyParsing (830ms)
TestParseCurrencyInUCurr {
} OK: TestParseCurrencyInUCurr ((14.0s))
TestFormatAttributes {
} OK: TestFormatAttributes (12ms)
TestFieldPositionIterator {
} OK: TestFieldPositionIterator
TestDecimal {
} OK: TestDecimal (10ms)
TestCurrencyFractionDigits {
} OK: TestCurrencyFractionDigits (6ms)
TestExponentParse {
} OK: TestExponentParse
TestExplicitParents {
} OK: TestExplicitParents (17ms)
TestLenientParse {
} OK: TestLenientParse (31ms)
TestAvailableNumberingSystems {
} OK: TestAvailableNumberingSystems (8ms)
TestRoundingPattern {
} OK: TestRoundingPattern
Test9087 {
} OK: Test9087
TestFormatFastpaths {
NOTE: UCONFIG_FORMAT_FASTPATHS not set, test skipped.
} OK: TestFormatFastpaths (10ms)
} OK: NumberFormatTest ((21.4s))
DateFormatRegressionTest {
Test4029195 {
} OK: Test4029195 (10ms)
Test4052408 {
} OK: Test4052408 (23ms)
Test4056591 {
} OK: Test4056591 (11ms)
Test4059917 {
} OK: Test4059917 (12ms)
Test4060212 {
} OK: Test4060212 (20ms)
Test4061287 {
} OK: Test4061287 (6ms)
Test4065240 {
} OK: Test4065240 (16ms)
Test4071441 {
} OK: Test4071441 (13ms)
Test4073003 {
} OK: Test4073003 (11ms)
Test4089106 {
} OK: Test4089106
Test4100302 {
} OK: Test4100302
Test4101483 {
} OK: Test4101483 (8ms)
Test4103340 {
} OK: Test4103340 (7ms)
Test4103341 {
} OK: Test4103341
Test4104136 {
} OK: Test4104136 (7ms)
Test4104522 {
} OK: Test4104522 (6ms)
Test4106807 {
} OK: Test4106807 (41ms)
Test4108407 {
} OK: Test4108407
Test4134203 {
} OK: Test4134203 (8ms)
Test4151631 {
} OK: Test4151631 (6ms)
Test4151706 {
} OK: Test4151706 (9ms)
Test4162071 {
} OK: Test4162071 (9ms)
Test4182066 {
} OK: Test4182066 (20ms)
Test4210209 {
} OK: Test4210209 (14ms)
Test714 {
} OK: Test714 (6ms)
Test1684 {
} OK: Test1684 (48ms)
Test5554 {
} OK: Test5554 (9ms)
Test9237 {
} OK: Test9237 (18ms)
TestParsing {
} OK: TestParsing (7ms)
} OK: DateFormatRegressionTest (431ms)
MessageFormatRegressionTest {
Test4074764 {
} OK: Test4074764
Test4031438 {
} OK: Test4031438
Test4052223 {
} OK: Test4052223
Test4104976 {
} OK: Test4104976
Test4106659 {
} OK: Test4106659
Test4106660 {
} OK: Test4106660
Test4111739 {
} OK: Test4111739
Test4114743 {
} OK: Test4114743
Test4116444 {
} OK: Test4116444 (6ms)
Test4114739 {
} OK: Test4114739
Test4113018 {
} OK: Test4113018
Test4106661 {
} OK: Test4106661
Test4094906 {
} OK: Test4094906
Test4118592 {
} OK: Test4118592
Test4118594 {
} OK: Test4118594
Test4105380 {
} OK: Test4105380
Test4120552 {
} OK: Test4120552
Test4142938 {
} OK: Test4142938
TestChoicePatternQuote {
} OK: TestChoicePatternQuote
Test4112104 {
} OK: Test4112104
TestAPI {
} OK: TestAPI
} OK: MessageFormatRegressionTest (83ms)
DateFormatMiscTests {
test4097450 {
} OK: test4097450 (82ms)
test4099975 {
} OK: test4099975 (29ms)
test4117335 {
} OK: test4117335 (341ms)
} OK: DateFormatMiscTests (460ms)
NumberFormatRoundTripTest {
start {
} OK: start ((3.0s))
} OK: NumberFormatRoundTripTest ((3.0s))
NumberFormatRegressionTest {
Test4075713 {
} OK: Test4075713
Test4074620 {
} OK: Test4074620
Test4088161 {
} OK: Test4088161
Test4087245 {
} OK: Test4087245
Test4087535 {
} OK: Test4087535
Test4088503 {
} OK: Test4088503
Test4066646 {
} OK: Test4066646 (26ms)
Test4059870 {
} OK: Test4059870
Test4083018 {
} OK: Test4083018
Test4071492 {
} OK: Test4071492
Test4086575 {
} OK: Test4086575
Test4068693 {
} OK: Test4068693
Test4069754 {
} OK: Test4069754
Test4087251 {
} OK: Test4087251
Test4090489 {
} OK: Test4090489
Test4090504 {
} OK: Test4090504
Test4095713 {
} OK: Test4095713
Test4092561 {
} OK: Test4092561
Test4092480 {
} OK: Test4092480
Test4087244 {
} OK: Test4087244
Test4070798 {
} OK: Test4070798 (10ms)
Test4071005 {
} OK: Test4071005 (11ms)
Test4071014 {
} OK: Test4071014 (11ms)
Test4071859 {
} OK: Test4071859 (11ms)
Test4093610 {
} OK: Test4093610 (6ms)
Test4098741 {
} OK: Test4098741
Test4074454 {
} OK: Test4074454
Test4099404 {
} OK: Test4099404
Test4101481 {
} OK: Test4101481
Test4052223 {
} OK: Test4052223
Test4061302 {
} OK: Test4061302
Test4062486 {
} OK: Test4062486
Test4108738 {
} OK: Test4108738
Test4106658 {
} OK: Test4106658
Test4106662 {
} OK: Test4106662
Test4114639 {
} OK: Test4114639
Test4106664 {
} OK: Test4106664
Test4106667 {
} OK: Test4106667
Test4110936 {
} OK: Test4110936
Test4122840 {
} OK: Test4122840 ((3.6s))
Test4125885 {
} OK: Test4125885
Test4134034 {
} OK: Test4134034
Test4134300 {
} OK: Test4134300 (8ms)
Test4140009 {
} OK: Test4140009
Test4141750 {
} OK: Test4141750
Test4145457 {
} OK: Test4145457
Test4147295 {
} OK: Test4147295
Test4147706 {
} OK: Test4147706
Test4162198 {
} OK: Test4162198
Test4162852 {
} OK: Test4162852
Test4167494 {
} OK: Test4167494
Test4170798 {
} OK: Test4170798
Test4176114 {
} OK: Test4176114 (13ms)
Test4179818 {
} OK: Test4179818
Test4212072 {
} OK: Test4212072 ((11.2s))
Test4216742 {
} OK: Test4216742 (90ms)
Test4217661 {
} OK: Test4217661
Test4161100 {
} OK: Test4161100
Test4243011 {
} OK: Test4243011
Test4243108 {
} OK: Test4243108
TestJ691 {
} OK: TestJ691 (13ms)
Test8199 {
} OK: Test8199
Test9109 {
} OK: Test9109
} OK: NumberFormatRegressionTest ((15.3s))
DateFormatRoundTripTest {
TestDateFormatRoundTrip {
} OK: TestDateFormatRoundTrip ((98.7s))
TestCentury {
} OK: TestCentury (13ms)
} OK: DateFormatRoundTripTest ((98.7s))
ParsePositionTest {
TestParsePosition {
} OK: TestParsePosition
TestFieldPosition {
} OK: TestFieldPosition
TestFieldPosition_example {
} OK: TestFieldPosition_example (6ms)
Test4109023 {
} OK: Test4109023
} OK: ParsePositionTest (18ms)
CalendarRegressionTest {
test4100311 {
} OK: test4100311
test4074758 {
} OK: test4074758 (10ms)
test4028518 {
} OK: test4028518
test4031502 {
} OK: test4031502 (747ms)
test4035301 {
} OK: test4035301
test4040996 {
} OK: test4040996 (180ms)
test4051765 {
} OK: test4051765
test4061476 {
} OK: test4061476 (11ms)
test4070502 {
} OK: test4070502
test4071197 {
} OK: test4071197
test4071385 {
} OK: test4071385
test4073929 {
} OK: test4073929
test4083167 {
} OK: test4083167
test4086724 {
} OK: test4086724 (22ms)
test4095407 {
} OK: test4095407
test4096231 {
} OK: test4096231
test4096539 {
} OK: test4096539 (17ms)
test41003112 {
} OK: test41003112
test4103271 {
} OK: test4103271 (731ms)
test4106136 {
} OK: test4106136
test4108764 {
} OK: test4108764 (8ms)
test4114578 {
} OK: test4114578 (7ms)
test4118384 {
} OK: test4118384 (6ms)
test4125881 {
} OK: test4125881 (31ms)
test4125892 {
} OK: test4125892 (6ms)
test4141665 {
} OK: test4141665
test4142933 {
} OK: test4142933
test4145158 {
} OK: test4145158
test4145983 {
} OK: test4145983
test4147269 {
} OK: test4147269
Test4149677 {
} OK: Test4149677 (6ms)
Test4162587 {
} OK: Test4162587
Test4165343 {
} OK: Test4165343
Test4166109 {
} OK: Test4166109
Test4167060 {
} OK: Test4167060 (209ms)
Test4197699 {
} OK: Test4197699 (10ms)
TestJ81 {
} OK: TestJ81 (157ms)
TestJ438 {
} OK: TestJ438 (98ms)
TestLeapFieldDifference {
} OK: TestLeapFieldDifference (16ms)
TestMalaysianInstance {
} OK: TestMalaysianInstance
test4059654 {
} OK: test4059654
test4092362 {
} OK: test4092362
TestWeekShift {
} OK: TestWeekShift
TestTimeZoneTransitionAdd {
} OK: TestTimeZoneTransitionAdd ((12.4s))
TestDeprecates {
} OK: TestDeprecates (11ms)
TestT5555 {
} OK: TestT5555
TestT6745 {
} OK: TestT6745 (13ms)
TestT8057 {
} OK: TestT8057
TestT8596 {
} OK: TestT8596
Test9019 {
} OK: Test9019
} OK: CalendarRegressionTest ((14.9s))
TimeZoneRegressionTest {
Test4052967 {
} OK: Test4052967
Test4073209 {
} OK: Test4073209
Test4073215 {
} OK: Test4073215 (12ms)
Test4084933 {
} OK: Test4084933
Test4096952 {
} OK: Test4096952
Test4109314 {
} OK: Test4109314 (7ms)
Test4126678 {
} OK: Test4126678
Test4151406 {
} OK: Test4151406 ((10.5s))
Test4151429 {
} OK: Test4151429
Test4154537 {
} OK: Test4154537
Test4154542 {
} OK: Test4154542
Test4154650 {
} OK: Test4154650
Test4154525 {
} OK: Test4154525
Test4162593 {
} OK: Test4162593 (29ms)
TestJ186 {
} OK: TestJ186 (76ms)
TestJ449 {
} OK: TestJ449 (20ms)
TestJDK12API {
} OK: TestJDK12API
Test4176686 {
} OK: Test4176686 (32ms)
Test4184229 {
} OK: Test4184229
} OK: TimeZoneRegressionTest ((10.7s))
IntlCalendarTest {
TestTypes {
} OK: TestTypes (21ms)
TestGregorian {
} OK: TestGregorian (69ms)
TestBuddhist {
} OK: TestBuddhist (34ms)
TestJapanese {
} OK: TestJapanese (119ms)
TestBuddhistFormat {
} OK: TestBuddhistFormat (73ms)
TestJapaneseFormat {
} OK: TestJapaneseFormat (123ms)
TestJapanese3860 {
} OK: TestJapanese3860 (29ms)
TestPersian {
} OK: TestPersian
TestPersianFormat {
} OK: TestPersianFormat (21ms)
TestTaiwan {
} OK: TestTaiwan (36ms)
} OK: IntlCalendarTest (555ms)
AstroTest {
TestSolarLongitude {
} OK: TestSolarLongitude
TestLunarPosition {
} OK: TestLunarPosition
TestCoordinates {
} OK: TestCoordinates
TestCoverage {
} OK: TestCoverage (130ms)
TestSunriseTimes {
} OK: TestSunriseTimes (171ms)
TestBasics {
} OK: TestBasics (10ms)
TestMoonAge {
} OK: TestMoonAge (49ms)
} OK: AstroTest (387ms)
CalendarCaseTest {
IslamicCivil {
} OK: IslamicCivil (174ms)
Hebrew {
} OK: Hebrew (311ms)
Indian {
} OK: Indian (203ms)
Coptic {
} OK: Coptic (128ms)
Ethiopic {
} OK: Ethiopic (259ms)
} OK: CalendarCaseTest ( 1.10s )
TimeZoneRuleTest {
TestSimpleRuleBasedTimeZone {
} OK: TestSimpleRuleBasedTimeZone (44ms)
TestHistoricalRuleBasedTimeZone {
} OK: TestHistoricalRuleBasedTimeZone (118ms)
TestOlsonTransition {
} OK: TestOlsonTransition (500ms)
TestRBTZTransition {
} OK: TestRBTZTransition ((1.8s))
TestHasEquivalentTransitions {
} OK: TestHasEquivalentTransitions (13ms)
TestVTimeZoneRoundTrip {
} OK: TestVTimeZoneRoundTrip ((1.8s))
TestVTimeZoneRoundTripPartial {
} OK: TestVTimeZoneRoundTripPartial ((3.8s))
TestVTimeZoneSimpleWrite {
} OK: TestVTimeZoneSimpleWrite (432ms)
TestVTimeZoneHeaderProps {
} OK: TestVTimeZoneHeaderProps (253ms)
TestGetSimpleRules {
} OK: TestGetSimpleRules (27ms)
TestTimeZoneRuleCoverage {
} OK: TestTimeZoneRuleCoverage (6ms)
TestSimpleTimeZoneCoverage {
} OK: TestSimpleTimeZoneCoverage
TestVTimeZoneCoverage {
} OK: TestVTimeZoneCoverage (8ms)
TestVTimeZoneParse {
} OK: TestVTimeZoneParse
TestT6216 {
} OK: TestT6216 (9ms)
TestT6669 {
} OK: TestT6669
TestVTimeZoneWrapper {
} OK: TestVTimeZoneWrapper
TestT8943 {
} OK: TestT8943
} OK: TimeZoneRuleTest ((8.9s))
DataDrivenCalendarTest {
TestCalendarConversion {
} OK: TestCalendarConversion ((1.8s))
TestCalendarOperations {
} OK: TestCalendarOperations ((6.9s))
} OK: DataDrivenCalendarTest ((8.8s))
DataDrivenFormatTest {
TestConsistentPivot {
} OK: TestConsistentPivot (236ms)
TestDateFormatBasic {
} OK: TestDateFormatBasic (74ms)
TestFormatRelative {
} OK: TestFormatRelative (75ms)
TestHebrew {
} OK: TestHebrew (17ms)
TestMoreDateParse {
} OK: TestMoreDateParse (14ms)
TestYearLengths {
} OK: TestYearLengths (208ms)
} OK: DataDrivenFormatTest (645ms)
IntlTestDateTimePatternGeneratorAPI {
testAPI {
} OK: testAPI ((3.7s))
testOptions {
} OK: testOptions (681ms)
} OK: IntlTestDateTimePatternGeneratorAPI ((4.5s))
TimeZoneOffsetLocalTest {
TestGetOffsetAroundTransition {
} OK: TestGetOffsetAroundTransition (17ms)
} OK: TimeZoneOffsetLocalTest (20ms)
TimeZoneFormatTest {
TestTimeZoneRoundTrip {
} OK: TestTimeZoneRoundTrip [(5m 9.8s)]
TestTimeRoundTrip {
} OK: TestTimeRoundTrip [(10m 30.5s)]
} OK: TimeZoneFormatTest [(15m 40.3s)]
PluralRulesTest {
testAPI {
} OK: testAPI (26ms)
testGetUniqueKeywordValue {
} OK: testGetUniqueKeywordValue
testGetSamples {
} OK: testGetSamples (400ms)
testWithin {
} OK: testWithin
testGetAllKeywordValues {
} OK: testGetAllKeywordValues (6ms)
} OK: PluralRulesTest (450ms)
PluralFormatTest {
pluralFormatBasicTest {
} OK: pluralFormatBasicTest (345ms)
pluralFormatUnitTest {
} OK: pluralFormatUnitTest (39ms)
pluralFormatLocaleTest {
} OK: pluralFormatLocaleTest (225ms)
pluralFormatExtendedTest {
} OK: pluralFormatExtendedTest (6ms)
pluralFormatExtendedParseTest {
} OK: pluralFormatExtendedParseTest (10ms)
} OK: PluralFormatTest (640ms)
DateIntervalFormatTest {
testAPI {
} OK: testAPI (358ms)
testFormat {
} OK: testFormat ((22.8s))
testFormatUserDII {
} OK: testFormatUserDII ((1.6s))
testStress {
} OK: testStress
} OK: DateIntervalFormatTest ((24.8s))
TimeUnitTest {
testBasic {
} OK: testBasic ((12.3s))
testAPI {
} OK: testAPI (133ms)
testGreek {
} OK: testGreek (879ms)
} OK: TimeUnitTest ((13.3s))
SelectFormatTest {
selectFormatAPITest {
} OK: selectFormatAPITest
selectFormatUnitTest {
} OK: selectFormatUnitTest
} OK: SelectFormatTest (10ms)
LocaleDisplayNamesTest {
TestCreate {
} OK: TestCreate (284ms)
TestCreateDialect {
} OK: TestCreateDialect
TestWithKeywordsAndEverything {
} OK: TestWithKeywordsAndEverything
TestUldnOpen {
} OK: TestUldnOpen
TestUldnOpenDialect {
} OK: TestUldnOpenDialect
TestUldnWithKeywordsAndEverything {
} OK: TestUldnWithKeywordsAndEverything
TestUldnComponents {
} OK: TestUldnComponents (47ms)
TestRootEtc {
} OK: TestRootEtc
TestKeywords {
} OK: TestKeywords
TestUntranslatedKeywords {
} OK: TestUntranslatedKeywords
TestPrivateUse {
} OK: TestPrivateUse
} OK: LocaleDisplayNamesTest (382ms)
DecimalFormatTest {
DataDrivenTests {
} OK: DataDrivenTests (254ms)
} OK: DecimalFormatTest (256ms)
} OK: format [(24m 27.6s)]
translit {
TransliteratorTest {
TestInstantiation {
} OK: TestInstantiation ((36.2s))
TestSimpleRules {
} OK: TestSimpleRules (36ms)
TestRuleBasedInverse {
} OK: TestRuleBasedInverse (8ms)
TestKeyboard {
} OK: TestKeyboard
TestKeyboard2 {
} OK: TestKeyboard2
TestKeyboard3 {
} OK: TestKeyboard3
TestArabic {
} OK: TestArabic
TestCompoundKana {
} OK: TestCompoundKana (109ms)
TestCompoundHex {
} OK: TestCompoundHex (13ms)
TestFiltering {
} OK: TestFiltering
TestInlineSet {
} OK: TestInlineSet (40ms)
TestPatternQuoting {
} OK: TestPatternQuoting
TestJ277 {
} OK: TestJ277 (35ms)
TestJ243 {
} OK: TestJ243 (6ms)
TestJ329 {
} OK: TestJ329
TestSegments {
} OK: TestSegments (8ms)
TestCursorOffset {
} OK: TestCursorOffset (7ms)
TestArbitraryVariableValues {
} OK: TestArbitraryVariableValues (6ms)
TestPositionHandling {
} OK: TestPositionHandling
TestHiraganaKatakana {
} OK: TestHiraganaKatakana (12ms)
TestCopyJ476 {
} OK: TestCopyJ476 (6ms)
TestAnchors {
} OK: TestAnchors (11ms)
TestInterIndic {
} OK: TestInterIndic (6ms)
TestFilterIDs {
} OK: TestFilterIDs (15ms)
TestCaseMap {
} OK: TestCaseMap (30ms)
TestNameMap {
} OK: TestNameMap (393ms)
TestLiberalizedID {
} OK: TestLiberalizedID (23ms)
TestCreateInstance {
} OK: TestCreateInstance (11ms)
TestNormalizationTransliterator {
} OK: TestNormalizationTransliterator (63ms)
TestCompoundRBT {
} OK: TestCompoundRBT (28ms)
TestCompoundFilter {
} OK: TestCompoundFilter (9ms)
TestRemove {
} OK: TestRemove (7ms)
TestToRules {
} OK: TestToRules (97ms)
TestContext {
} OK: TestContext
TestSupplemental {
} OK: TestSupplemental (37ms)
TestQuantifier {
} OK: TestQuantifier (46ms)
TestSTV {
} OK: TestSTV (87ms)
TestCompoundInverse {
} OK: TestCompoundInverse
TestNFDChainRBT {
} OK: TestNFDChainRBT
TestNullInverse {
} OK: TestNullInverse
TestAliasInverseID {
} OK: TestAliasInverseID (7ms)
TestCompoundInverseID {
} OK: TestCompoundInverseID (32ms)
TestUndefinedVariable {
} OK: TestUndefinedVariable
TestEmptyContext {
} OK: TestEmptyContext
TestCompoundFilterID {
} OK: TestCompoundFilterID (23ms)
TestPropertySet {
} OK: TestPropertySet (34ms)
TestNewEngine {
} OK: TestNewEngine (71ms)
TestQuantifiedSegment {
} OK: TestQuantifiedSegment (10ms)
TestDevanagariLatinRT {
} OK: TestDevanagariLatinRT (333ms)
TestTeluguLatinRT {
} OK: TestTeluguLatinRT (346ms)
TestCompoundLatinRT {
} OK: TestCompoundLatinRT (674ms)
TestSanskritLatinRT {
} OK: TestSanskritLatinRT (281ms)
TestLocaleInstantiation {
} OK: TestLocaleInstantiation (12ms)
TestTitleAccents {
} OK: TestTitleAccents
TestLocaleResource {
} OK: TestLocaleResource (25ms)
TestParseError {
} OK: TestParseError
TestOutputSet {
} OK: TestOutputSet
TestVariableRange {
} OK: TestVariableRange
TestInvalidPostContext {
} OK: TestInvalidPostContext
TestIDForms {
} OK: TestIDForms (36ms)
TestToRulesMark {
} OK: TestToRulesMark (100ms)
TestEscape {
} OK: TestEscape (13ms)
TestAnchorMasking {
} OK: TestAnchorMasking
TestDisplayName {
} OK: TestDisplayName (7ms)
TestSpecialCases {
} OK: TestSpecialCases (189ms)
TestIncrementalProgress {
} OK: TestIncrementalProgress ( 1.34s )
TestSurrogateCasing {
} OK: TestSurrogateCasing
TestFunction {
} OK: TestFunction (28ms)
TestInvalidBackRef {
} OK: TestInvalidBackRef (10ms)
TestMulticharStringSet {
} OK: TestMulticharStringSet (14ms)
TestUserFunction {
} OK: TestUserFunction (135ms)
TestAnyX {
} OK: TestAnyX (60ms)
TestSourceTargetSet {
} OK: TestSourceTargetSet
TestGurmukhiDevanagari {
} OK: TestGurmukhiDevanagari (51ms)
TestPatternWhiteSpace {
} OK: TestPatternWhiteSpace
TestAllCodepoints {
} OK: TestAllCodepoints ((42.9s))
TestBoilerplate {
} OK: TestBoilerplate (15ms)
TestAlternateSyntax {
} OK: TestAlternateSyntax (11ms)
TestBeginEnd {
} OK: TestBeginEnd (119ms)
TestBeginEndToRules {
} OK: TestBeginEndToRules (221ms)
TestRegisterAlias {
} OK: TestRegisterAlias (57ms)
TestRuleStripping {
} OK: TestRuleStripping
TestHalfwidthFullwidth {
} OK: TestHalfwidthFullwidth (7ms)
TestThai {
} OK: TestThai ((1.9s))
TestAny {
} OK: TestAny ( 1.38s )
} OK: TransliteratorTest ((88.1s))
TransliteratorAPITest {
TestgetInverse {
} OK: TestgetInverse (177ms)
TestgetID {
} OK: TestgetID ( 1.06s )
TestGetDisplayName {
} OK: TestGetDisplayName (92ms)
TestTransliterate1 {
} OK: TestTransliterate1 (42ms)
TestTransliterate2 {
} OK: TestTransliterate2 (31ms)
TestTransliterate3 {
} OK: TestTransliterate3
TestSimpleKeyboardTransliterator {
} OK: TestSimpleKeyboardTransliterator
TestKeyboardTransliterator1 {
} OK: TestKeyboardTransliterator1
TestKeyboardTransliterator2 {
} OK: TestKeyboardTransliterator2 (10ms)
TestKeyboardTransliterator3 {
} OK: TestKeyboardTransliterator3
TestGetAdoptFilter {
} OK: TestGetAdoptFilter
TestClone {
} OK: TestClone (9ms)
TestNullTransliterator {
} OK: TestNullTransliterator
TestRegisterUnregister {
} OK: TestRegisterUnregister (6ms)
TestUnicodeFunctor {
} OK: TestUnicodeFunctor
} OK: TransliteratorAPITest ( 1.50s )
CompoundTransliteratorTest {
TestConstruction {
} OK: TestConstruction (60ms)
TestCloneEqual {
} OK: TestCloneEqual (14ms)
TestGetCount {
} OK: TestGetCount (17ms)
TestGetSetAdoptTransliterator {
} OK: TestGetSetAdoptTransliterator (201ms)
TestTransliterate {
} OK: TestTransliterate (138ms)
} OK: CompoundTransliteratorTest (442ms)
TransliteratorRoundTripTest {
TestCyrillic {
} OK: TestCyrillic ((3.0s))
TestHiragana {
} OK: TestHiragana ((4.7s))
TestKatakana {
} OK: TestKatakana ((5.3s))
TestJamo {
} OK: TestJamo ( 1.02s )
TestHangul {
} OK: TestHangul ( 1.24s )
TestGreek {
} OK: TestGreek ((2.0s))
TestGreekUNGEGN {
} OK: TestGreekUNGEGN ((4.1s))
Testel {
} OK: Testel ((4.1s))
TestDevanagariLatin {
} OK: TestDevanagariLatin ((4.6s))
TestInterIndic {
} OK: TestInterIndic ((6.2s))
TestHebrew {
} OK: TestHebrew ( 1.44s )
TestArabic {
} OK: TestArabic ( 1.09s )
TestHan {
} OK: TestHan ((4.1s))
} OK: TransliteratorRoundTripTest ((43.0s))
JamoTest {
TestJamo {
} OK: TestJamo (226ms)
TestRealText {
} OK: TestRealText (235ms)
TestPiecemeal {
} OK: TestPiecemeal (96ms)
} OK: JamoTest (584ms)
TransliteratorErrorTest {
TestTransliteratorErrors {
} OK: TestTransliteratorErrors (8ms)
TestUnicodeSetErrors {
} OK: TestUnicodeSetErrors (37ms)
TestRBTErrors {
} OK: TestRBTErrors
TestCoverage {
} OK: TestCoverage
} OK: TransliteratorErrorTest (58ms)
ReplaceableTest {
TestReplaceableClass {
} OK: TestReplaceableClass (10ms)
} OK: ReplaceableTest (13ms)
} OK: translit [(2m 13.8s)]
rbbi {
RBBIAPITest {
TestCloneEquals {
} OK: TestCloneEquals (18ms)
TestgetRules {
} OK: TestgetRules
TestHashCode {
} OK: TestHashCode
TestGetSetAdoptText {
} OK: TestGetSetAdoptText
TestIteration {
} OK: TestIteration (11ms)
TestBuilder {
} OK: TestBuilder (178ms)
TestQuoteGrouping {
} OK: TestQuoteGrouping (89ms)
TestRuleStatusVec {
} OK: TestRuleStatusVec (170ms)
TestBug2190 {
} OK: TestBug2190 (88ms)
TestRegistration {
} OK: TestRegistration (86ms)
TestBoilerPlate {
} OK: TestBoilerPlate
TestRuleStatus {
} OK: TestRuleStatus
TestRoundtripRules {
} OK: TestRoundtripRules ((8.3s))
TestCreateFromRBBIData {
} OK: TestCreateFromRBBIData
TestRefreshInputText {
} OK: TestRefreshInputText
} OK: RBBIAPITest ((9.0s))
RBBITest {
TestBug4153072 {
} OK: TestBug4153072 (14ms)
TestStatusReturn {
} OK: TestStatusReturn (177ms)
TestUnicodeFiles {
} OK: TestUnicodeFiles ((3.7s))
TestEmptyString {
} OK: TestEmptyString
TestGetAvailableLocales {
} OK: TestGetAvailableLocales (32ms)
TestGetDisplayName {
} OK: TestGetDisplayName (150ms)
TestEndBehaviour {
} OK: TestEndBehaviour
TestWordBreaks {
} OK: TestWordBreaks ((3.1s))
TestWordBoundary {
} OK: TestWordBoundary (8ms)
TestLineBreaks {
} OK: TestLineBreaks ((15.0s))
TestSentBreaks {
} OK: TestSentBreaks ( 1.12s )
TestExtended {
} OK: TestExtended (479ms)
TestMonkey {
} OK: TestMonkey ((75.2s))
TestBug3818 {
} OK: TestBug3818
TestDebug {
} OK: TestDebug
TestTrieDict {
} OK: TestTrieDict ((6.2s))
TestBug5775 {
} OK: TestBug5775
TestDictRules {
} OK: TestDictRules (102ms)
TestBug5532 {
} OK: TestBug5532
} OK: RBBITest ((105.5s))
} OK: rbbi [(1m 54.5s)]
rbnf {
TestEnglishSpellout {
} OK: TestEnglishSpellout ( 1.48s )
TestOrdinalAbbreviations {
} OK: TestOrdinalAbbreviations (87ms)
TestDurations {
} OK: TestDurations (843ms)
TestSpanishSpellout {
} OK: TestSpanishSpellout (138ms)
TestFrenchSpellout {
} OK: TestFrenchSpellout ( 0.93s )
TestSwissFrenchSpellout {
} OK: TestSwissFrenchSpellout (64ms)
TestItalianSpellout {
} OK: TestItalianSpellout (146ms)
TestGermanSpellout {
} OK: TestGermanSpellout ( 0.96s )
TestThaiSpellout {
} OK: TestThaiSpellout (108ms)
TestAPI {
} OK: TestAPI ((8.9s))
TestFractionalRuleSet {
} OK: TestFractionalRuleSet (199ms)
TestSwedishSpellout {
} OK: TestSwedishSpellout (130ms)
TestBelgianFrenchSpellout {
} OK: TestBelgianFrenchSpellout (68ms)
TestSmallValues {
} OK: TestSmallValues (103ms)
TestLocalizations {
} OK: TestLocalizations (180ms)
TestAllLocales {
} OK: TestAllLocales ((44.7s))
TestHebrewFraction {
} OK: TestHebrewFraction (89ms)
TestPortugueseSpellout {
} OK: TestPortugueseSpellout (95ms)
TestMultiplierSubstitution {
} OK: TestMultiplierSubstitution
TestSetDecimalFormatSymbols {
} OK: TestSetDecimalFormatSymbols (7ms)
} OK: rbnf ((59.3s))
rbnfrt {
TestEnglishSpelloutRT {
} OK: TestEnglishSpelloutRT ((12.5s))
TestDurationsRT {
} OK: TestDurationsRT ((5.2s))
TestSpanishSpelloutRT {
} OK: TestSpanishSpelloutRT ((13.6s))
TestFrenchSpelloutRT {
} OK: TestFrenchSpelloutRT ((12.2s))
TestSwissFrenchSpelloutRT {
} OK: TestSwissFrenchSpelloutRT ((12.6s))
TestItalianSpelloutRT {
} OK: TestItalianSpelloutRT ((9.9s))
TestGermanSpelloutRT {
} OK: TestGermanSpelloutRT ((8.1s))
TestSwedishSpelloutRT {
} OK: TestSwedishSpelloutRT ((6.5s))
TestDutchSpelloutRT {
} OK: TestDutchSpelloutRT ((13.2s))
TestJapaneseSpelloutRT {
} OK: TestJapaneseSpelloutRT ((4.3s))
TestRussianSpelloutRT {
} OK: TestRussianSpelloutRT ((12.3s))
TestPortugueseSpelloutRT {
} OK: TestPortugueseSpelloutRT ((11.8s))
} OK: rbnfrt [(2m 2.1s)]
icuserv {
testAPI_One {
} OK: testAPI_One (23ms)
testAPI_Two {
} OK: testAPI_Two (62ms)
testRBF {
} OK: testRBF ( 1.24s )
testNotification {
} OK: testNotification (80ms)
testLocale {
} OK: testLocale (6ms)
testWrapFactory {
} OK: testWrapFactory
testCoverage {
} OK: testCoverage
} OK: icuserv ((1.5s))
idna {
TestToASCII {
} OK: TestToASCII (80ms)
TestToUnicode {
} OK: TestToUnicode (47ms)
TestIDNToASCII {
} OK: TestIDNToASCII (24ms)
TestIDNToUnicode {
} OK: TestIDNToUnicode (22ms)
TestCompare {
} OK: TestCompare (74ms)
TestErrorCases {
} OK: TestErrorCases (12ms)
TestChaining {
} OK: TestChaining (39ms)
TestRootLabelSeparator {
} OK: TestRootLabelSeparator (160ms)
TestCompareReferenceImpl {
} OK: TestCompareReferenceImpl ((12.6s))
TestDataFile {
} OK: TestDataFile (722ms)
TestRefIDNA {
} OK: TestRefIDNA ( 1.35s )
TestIDNAMonkeyTest {
} OK: TestIDNAMonkeyTest ( 1.38s )
TestConformanceTestVectors {
Test {
} OK: Test (165ms)
} OK: TestConformanceTestVectors (167ms)
UTS46Test {
TestAPI {
} OK: TestAPI (14ms)
TestNotSTD3 {
} OK: TestNotSTD3
TestSomeCases {
} OK: TestSomeCases (171ms)
} OK: UTS46Test (191ms)
} OK: idna ((17.0s))
convert {
TestToUnicode {
} OK: TestToUnicode (605ms)
TestFromUnicode {
} OK: TestFromUnicode (235ms)
TestGetUnicodeSet {
} OK: TestGetUnicodeSet ((1.5s))
TestGetUnicodeSet2 {
} OK: TestGetUnicodeSet2 [(5m 44.7s)]
} OK: convert [(5m 47.1s)]
rbnfp {
TestParse {
} OK: TestParse (432ms)
} OK: rbnfp (434ms)
csdet {
ConstructionTest {
} OK: ConstructionTest (71ms)
UTF8Test {
} OK: UTF8Test
UTF16Test {
} OK: UTF16Test
C1BytesTest {
} OK: C1BytesTest (7ms)
InputFilterTest {
} OK: InputFilterTest
DetectionTest {
} OK: DetectionTest ((2.7s))
IBM424Test {
} OK: IBM424Test (11ms)
IBM420Test {
} OK: IBM420Test (8ms)
Ticket6394Test {
} OK: Ticket6394Test
} OK: csdet ((2.9s))
spoof {
TestSpoofAPI {
} OK: TestSpoofAPI (69ms)
TestSkeleton {
} OK: TestSkeleton (6ms)
TestAreConfusable {
} OK: TestAreConfusable
TestInvisible {
} OK: TestInvisible
testConfData {
} OK: testConfData ((3.3s))
testBug8654 {
} OK: testBug8654
} OK: spoof ((3.4s))
bidi {
TestBidiTest {
} OK: TestBidiTest ((10.3s))
} OK: bidi ((10.4s))
--------------------------------------
OK: All tests passed without error.
--------------------------------------
Elapsed Time: 00:47:49.922
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
make[1]: Making `check' in `iotest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ./iotest
Default charset for this run is UTF-8
(./iotest) {
file {
TestFile ---[OK] (554ms)
StdinBuffering ---[OK]
TestfgetsBuffers ---[OK] (9ms)
TestFileReadBuffering ---[OK]
TestfgetsLineCount ---[OK] (10ms)
TestfgetsNewLineHandling ---[OK]
TestfgetsNewLineCount ---[OK] (32ms)
TestFgetsLineBuffering ---[OK] (9ms)
TestCodepage ---[OK]
TestCodepageFlush ---[OK] (33ms)
TestFileWriteRetvalUTF16 ---[OK] (9ms)
TestFileWriteRetvalUTF8 ---[OK] (14ms)
TestFileWriteRetvalASCII ---[OK] (7ms)
TestFileWriteRetvalNONE ---[OK] (6ms)
TestCodepageAndLocale ---[OK]
TestFprintfFormat ---[OK] (180ms)
TestFScanset ---[OK] (41ms)
TestFilePrintCompatibility ---[OK] ((1.9s))
TestBadScanfFormat ---[OK]
TestVargs ---[OK]
TestUnicodeFormat ---[OK]
} /file ((2.9s))
string {
TestString ---[OK] (101ms)
TestLocalizedString ---[OK] (80ms)
TestSprintfFormat ---[OK] (32ms)
TestSnprintf ---[OK] (11ms)
TestSScanset ---[OK]
TestStringCompatibility ---[OK] ((4.6s))
TestBadScanfFormat ---[OK]
TestVargs ---[OK]
TestCount ---[OK]
} /string ((4.8s))
translit {
ops ---[OK] (587ms)
fileOut ---[OK] (173ms)
stringOut ---[OK] (9ms)
} (782ms)
datadriv {
DataDrivenPrintf ---[OK] (285ms)
DataDrivenPrintfPrecision ---[OK] (9ms)
DataDrivenScanf ---[OK] (38ms)
} (346ms)
stream {
TestStream ---[OK] (191ms)
TestStreamEOF ---[OK]
} (206ms)
} / (./iotest) ((9.0s))
[All tests passed successfully...]
Elapsed Time: 00:00:09.166
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
make[1]: Making `check' in `cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH ./cintltst
Default locale for this run is en_US_POSIX
(./cintltst) {
tsconv {
ucnvseltst {
TestSelector ---[OK] ((35.6s))
TestUPropsVector ---[OK]
}
ccapitst {
ListNames {
" Number of available codepages: 229/362
} ---[OK] (45ms)
TestConvert ---[OK] (11ms)
TestFlushCache ---[OK]
TestAlias ---[OK] (45ms)
TestDuplicateAlias ---[OK]
TestConvertSafeClone ---[OK] (8ms)
TestConvertSafeCloneCallback ---[OK]
TestCCSID ---[OK]
TestJ932 ---[OK]
TestJ1968 ---[OK]
TestLMBCSMaxChar ---[OK] (8ms)
TestEBCDICSwapLFNL ---[OK]
TestConvertEx ---[OK]
TestConvertExFromUTF8 ---[OK] (31ms)
TestConvertExFromUTF8_C5F0 ---[OK]
TestConvertAlgorithmic ---[OK]
TestDefaultConverterError ---[OK]
TestDefaultConverterSet {
" Skipping test: ucnv_setDefaultName() did not affect actual name of UTF-8
} ---[OK]
TestToUCountPending ---[OK]
TestFromUCountPending ---[OK]
TestDefaultName ---[OK]
TestCompareNames ---[OK]
TestSubstString ---[OK]
InvalidArguments ---[OK]
TestGetName ---[OK]
TestUTFBOM ---[OK]
} /tsconv/ccapitst
nucnvtst {
TestInBufSizes ---[OK] (135ms)
TestOutBufSizes ---[OK] (87ms)
TestConverterTypesAndStarters ---[OK]
TestAmbiguous ---[OK] (16ms)
TestSignatureDetection ---[OK]
TestUTF7 ---[OK]
TestIMAP ---[OK]
TestUTF8 ---[OK]
TestCESU8 ---[OK]
TestUTF16 ---[OK]
TestUTF16BE ---[OK]
TestUTF16LE ---[OK]
TestUTF32 ---[OK]
TestUTF32BE ---[OK]
TestUTF32LE ---[OK]
TestLMBCS ---[OK]
TestLATIN1 ---[OK]
TestSBCS ---[OK]
TestDBCS ---[OK] (9ms)
TestICCRunout ---[OK]
TestMBCS ---[OK]
TestISO_2022_JP ---[OK]
TestJIS ---[OK]
TestISO_2022_JP_1 ---[OK]
TestISO_2022_JP_2 ---[OK] (6ms)
TestISO_2022_KR ---[OK] (67ms)
TestISO_2022_KR_1 ---[OK]
TestISO_2022_CN ---[OK] (21ms)
TestHZ ---[OK]
TestSCSU ---[OK] (16ms)
TestEBCDIC_STATEFUL ---[OK]
TestGB18030 ---[OK] (14ms)
TestJitterbug255 ---[OK]
TestEBCDICUS4XML ---[OK]
TestISCII ---[OK]
TestJB5275 ---[OK]
TestJB5275_1 ---[OK]
TestJitterbug981 ---[OK] (156ms)
TestJitterbug1293 ---[OK]
TestCoverageMBCS ---[OK]
TestRoundTrippingAllUTF ---[OK]
TestJitterbug2346 ---[OK]
TestJitterbug2411 ---[OK]
TestJitterbug6175 ---[OK]
TestIsFixedWidth ---[OK]
} /tsconv/nucnvtst
bocu1tst {
TestBOCU1RefDiff ---[OK] ((6.7s))
TestBOCU1 ---[OK] (10ms)
}
nccbtst {
TestSkipCallBack ---[OK] (35ms)
TestStopCallBack ---[OK] (14ms)
TestSubCallBack ---[OK] (23ms)
TestSubWithValueCallBack ---[OK] (33ms)
TestLegalAndOtherCallBack ---[OK]
TestSingleByteCallBack ---[OK]
TestCallBackFailure ---[OK]
}
eurocreg {
TestEuroRegression ---[OK]
}
ncnvfbts {
TestConverterFallBack ---[OK] (154ms)
}
ncnvtst {
TestSurrogateBehaviour ---[OK]
TestErrorBehaviour ---[OK] (7ms)
ToUnicodeErrorBehaviour ---[OK]
TestGetNextErrorBehaviour ---[OK]
TestAvailableConverters ---[OK] (12ms)
TestFlushInternalBuffer ---[OK]
TestResetBehaviour ---[OK]
TestRegressionUTF8 ---[OK] ((1.9s))
TestRegressionUTF32 ---[OK] ( 1.42s )
TestTruncated ---[OK]
TestUnicodeSet ---[OK] ((4.8s))
} /tsconv/ncnvtst
stdnmtst {
TestStandardName ---[OK]
TestStandardNames ---[OK]
TestCanonicalName ---[OK]
}
} /tsconv ((51.7s))
udatatst {
TestUDataOpen ---[OK] (145ms)
TestUDataOpenChoiceDemo1 ---[OK]
TestUDataOpenChoiceDemo2 ---[OK]
TestUDataGetInfo ---[OK]
TestUDataGetMemory ---[OK]
TestErrorConditions ---[OK]
TestAppData ---[OK] (17ms)
TestSwapData ---[OK] ((1.6s))
TestUDataSetAppData ---[OK]
TestICUDataName ---[OK]
PointerTableOfContents ---[OK]
SetBadCommonData ---[OK]
TestUDataFileAccess ---[OK] (24ms)
} /udatatst ((1.8s))
hpmufn {
TestHeapFunctions ---[OK] (26ms)
TestMutexFunctions ---[OK]
TestIncDecFunctions ---[OK]
} (42ms)
utf16tst {
TestCodeUnitValues ---[OK]
TestCharLength ---[OK]
TestGetChar ---[OK] (10ms)
TestNextPrevChar ---[OK]
TestFwdBack ---[OK]
TestSetChar ---[OK]
TestAppendChar ---[OK]
TestAppend ---[OK]
TestSurrogate ---[OK]
} /utf16tst (14ms)
utf8tst {
TestCodeUnitValues ---[OK]
TestCharLength ---[OK]
TestGetChar ---[OK]
TestNextPrevChar ---[OK] (24ms)
TestFwdBack ---[OK]
TestSetChar ---[OK]
TestAppendChar ---[OK]
TestAppend ---[OK]
TestSurrogates ---[OK]
} /utf8tst (25ms)
tsutil {
cstrtest {
TestAPI ---[OK] (11ms)
TestInvariant ---[OK]
TestCompareInvEbcdicAsAscii ---[OK]
}
trietest {
TrieTest ---[OK] ((13.0s))
DummyTrieTest ---[OK] (393ms)
}
trie2test {
TrieTest ---[OK] ((18.7s))
EnumNewTrieForLeadSurrogateTest ---[OK] (10ms)
DummyTrieTest ---[OK] ( 0.94s )
FreeBlocksTest ---[OK] ((3.4s))
GrowDataArrayTest ---[OK] ((4.4s))
GetVersionTest ---[OK]
Trie12ConversionTest ---[OK] ( 1.03s )
}
cloctst {
TestObsoleteNames ---[OK] (119ms)
TestBasicGetters ---[OK]
TestNullDefault ---[OK] (12ms)
TestPrefixes ---[OK]
TestSimpleResourceInfo ---[OK]
TestDisplayNames ---[OK] (166ms)
TestGetAvailableLocales {
" Number of locales returned = 494
} ---[OK]
TestDataDirectory ---[OK]
TestISOFunctions ---[OK] (21ms)
TestISO3Fallback ---[OK]
TestUninstalledISO3Names ---[OK]
TestSimpleDisplayNames ---[OK]
TestVariantParsing ---[OK]
TestKeywordVariants ---[OK]
TestKeywordVariantParsing ---[OK]
TestCanonicalization ---[OK]
TestKeywordSet ---[OK]
TestKeywordSetError ---[OK]
TestDisplayKeywords ---[OK]
TestDisplayKeywordValues ---[OK] (46ms)
TestGetBaseName ---[OK]
TestGetLocale ---[OK] (349ms)
TestDisplayNameWarning ---[OK]
TestNonexistentLanguageExemplars ---[OK]
TestLocDataErrorCodeChaining ---[OK]
TestLanguageExemplarsFallbacks ---[OK]
TestCalendar ---[OK]
TestDateFormat ---[OK]
TestCollation ---[OK]
TestULocale ---[OK]
TestUResourceBundle ---[OK]
TestDisplayName ---[OK] ((2.5s))
TestAcceptLanguage ---[OK] (48ms)
TestGetLocaleForLCID ---[OK]
TestOrientation ---[OK] (93ms)
TestLikelySubtags ---[OK] (269ms)
TestToLanguageTag ---[OK] (12ms)
TestForLanguageTag ---[OK] (7ms)
TestTrailingNull ---[OK]
TestUnicodeDefines ---[OK]
} /tsutil/cloctst
cldrtest {
TestLocaleStructure ---[OK] ( 1.27s )
TestCurrencyList ---[OK]
TestConsistentCountryInfo ---[OK] ((2.1s))
VerifyTranslation ---[OK] ((5.2s))
TestExemplarSet ---[OK] ((7.6s))
TestLocaleDisplayPattern ---[OK] (71ms)
TestCoverage ---[OK]
TestIndexChars ---[OK]
TestAvailableIsoCodes ---[OK] (46ms)
} /tsutil/cldrtest
cucdtst {
TestCodeUnit ---[OK] (14ms)
TestCodePoint ---[OK]
TestCharLength ---[OK]
TestBinaryValues ---[OK]
TestUnicodeData ---[OK] ((3.3s))
TestAdditionalProperties ---[OK] (579ms)
TestNumericProperties ---[OK]
TestUpperLower ---[OK]
TestLetterNumber ---[OK] (6ms)
TestMisc ---[OK]
TestPOSIX ---[OK]
TestControlPrint ---[OK]
TestIdentifier ---[OK]
TestCharNames ---[OK] ((3.1s))
TestMirroring ---[OK] (11ms)
TestUScriptCodeAPI ---[OK] (552ms)
TestHasScript ---[OK]
TestGetScriptExtensions ---[OK]
TestUScriptRunAPI ---[OK]
TestPropertyNames ---[OK] (17ms)
TestPropertyValues ---[OK]
TestConsistency ---[OK] (160ms)
TestUCase ---[OK]
TestUBiDiProps ---[OK]
TestCaseFolding ---[OK] (753ms)
} /tsutil/cucdtst
custrtst {
TestStringCopy ---[OK]
TestStringFunctions ---[OK]
TestStringSearching ---[OK]
TestSurrogateSearching ---[OK]
TestUnescape ---[OK]
TestCountChar32 ---[OK] (7ms)
TestUCharIterator ---[OK]
TestUNormIterator ---[OK] (160ms)
TestBadUNormIterator ---[OK]
} /tsutil/custrtst
cstrcase {
TestCaseLower ---[OK]
TestCaseUpper ---[OK]
TestCaseTitle ---[OK]
TestCaseDutchTitle ---[OK]
TestCaseFolding ---[OK]
TestCaseCompare ---[OK]
TestUCaseMap ---[OK] (17ms)
TestUCaseMapToTitle ---[OK]
} /tsutil/cstrcase
crestst {
TestConstruction1 ---[OK]
TestOpenDirect ---[OK] (34ms)
TestResourceBundles ---[OK] (7ms)
TestTable32 ---[OK] (604ms)
TestFileStream ---[OK] (28ms)
TestGetSize ---[OK]
TestGetLocaleByType ---[OK]
TestFallback ---[OK]
TestAliasConflict ---[OK]
} /tsutil/crestst
creststn {
TestErrorCodes ---[OK] (15ms)
TestEmptyBundle ---[OK]
TestConstruction1 ---[OK]
TestResourceBundles ---[OK] (77ms)
TestNewTypes ---[OK] (885ms)
TestEmptyTypes ---[OK]
TestBinaryCollationData ---[OK]
TestAPI ---[OK]
TestErrorConditions ---[OK]
TestDecodedBundle ---[OK]
TestResourceLevelAliasing ---[OK] (59ms)
TestDirectAccess ---[OK]
TestXPath ---[OK]
TestCLDRStyleAliases ---[OK]
TestFallbackCodes ---[OK]
TestGetUTF8String ---[OK]
TestCLDRVersion {
" ulocdata_getCLDRVersion() returned: '21.0'
} ---[OK]
TestFallback ---[OK]
TestGetVersion ---[OK] (43ms)
TestGetVersionColl ---[OK] ((21.6s))
TestAliasConflict ---[OK]
TestGetKeywordValues ---[OK] (170ms)
TestGetFunctionalEquivalent ---[OK] (100ms)
TestJB3763 ---[OK]
TestStackReuse ---[OK]
} /tsutil/creststn
chashtst {
TestBasic ---[OK]
TestOtherAPI ---[OK]
hashIChars ---[OK]
}
uenumtst {
EnumerationTest ---[OK]
EmptyEnumerationTest ---[OK]
DefaultNextTest ---[OK]
}
cposxtst {
TestMessageCatalog ---[OK] (16ms)
}
sorttest {
SortTest ---[OK]
}
TraceTest {
TestTraceAPI ---[OK] (28ms)
}
UTextTest {
TestAPI ---[OK]
}
} /tsutil ((94.7s))
custrtrn {
Test_strToUTF32 ---[OK] (13ms)
Test_strToUTF32_surrogates ---[OK]
Test_strFromUTF32 ---[OK]
Test_strFromUTF32_surrogates ---[OK]
Test_UChar_UTF8_API ---[OK]
Test_FromUTF8 ---[OK]
Test_FromUTF8Lenient ---[OK]
Test_UChar_WCHART_API ---[OK]
Test_widestrs ---[OK]
Test_WCHART_LongString ---[OK]
Test_strToJavaModifiedUTF8 ---[OK]
Test_strFromJavaModifiedUTF8 ---[OK] (8ms)
TestNullEmptySource ---[OK]
} /custrtrn (32ms)
ucsdetst {
TestConstruction ---[OK] (50ms)
TestUTF8 ---[OK] (6ms)
TestUTF16 ---[OK]
TestC1Bytes ---[OK]
TestInputFilter ---[OK]
TestErrorChaining ---[OK]
TestBufferOverflow ---[OK]
TestIBM424 ---[OK] (10ms)
TestIBM420 ---[OK] (30ms)
} /ucsdetst (145ms)
complex {
bidi {
TestCharFromDirProp ---[OK] (30ms)
TestBidi ---[OK] (25ms)
TestInverse ---[OK] (24ms)
TestReorder ---[OK]
TestFailureRecovery ---[OK]
TestMultipleParagraphs ---[OK]
TestReorderingMode ---[OK] (22ms)
TestReorderRunsOnly ---[OK] (12ms)
TestStreaming ---[OK]
TestClassOverride ---[OK]
testGetBaseDirection ---[OK]
testContext ---[OK]
} /complex/bidi
arabic-shaping {
ArabicShapingTest ---[OK]
lamalef ---[OK]
tashkeel ---[OK]
unshaping ---[OK]
bug-5421 ---[OK]
tailtest ---[OK]
}
} /complex (171ms)
uset {
TestAPI ---[OK] (16ms)
Testj2269 ---[OK]
TestSerialized ---[OK] ( 1.19s )
TestNonInvariantPattern ---[OK]
TestBadPattern ---[OK]
TestFreezable ---[OK] (28ms)
TestSpan ---[OK] (27ms)
} ( 1.29s )
spreptst {
Test_nfs4_cs_prep_data ---[OK] (650ms)
Test_nfs4_cis_prep_data ---[OK] (466ms)
Test_nfs4_mixed_prep_data ---[OK] (752ms)
Test_nfs4_cs_prep ---[OK]
Test_nfs4_cis_prep ---[OK] (20ms)
Test_nfs4_mixed_prep ---[OK] (16ms)
TestBEAMWarning ---[OK]
TestCoverage ---[OK]
TestStringPrepProfiles ---[OK] (122ms)
} /spreptst ((2.1s))
idna {
TestToUnicode ---[OK] (60ms)
TestToASCII ---[OK] (34ms)
TestIDNToUnicode ---[OK] (21ms)
TestIDNToASCII ---[OK] (22ms)
TestCompare ---[OK] (74ms)
TestJB4490 ---[OK]
TestJB4475 ---[OK]
TestLength ---[OK]
TestJB5273 ---[OK]
TestUTS46 ---[OK] (18ms)
} /idna (269ms)
regex {
TestRegexCAPI ---[OK] (187ms)
TestBug4315 ---[OK]
TestUTextAPI ---[OK] (19ms)
TestRefreshInput ---[OK]
TestBug8421 ---[OK]
} (228ms)
tstxtbd {
cbiapts {
TestBreakIteratorCAPI ---[OK] (41ms)
TestBreakIteratorSafeClone ---[OK]
TestBreakIteratorUText ---[OK]
TestBreakIteratorRules ---[OK] (159ms)
TestBreakIteratorRuleError ---[OK] (81ms)
TestBreakIteratorStatusVec ---[OK] (164ms)
TestBreakIteratorTailoring ---[OK] (190ms)
TestBreakIteratorRefresh ---[OK]
} /tstxtbd/cbiapts
} /tstxtbd (674ms)
tsformat {
ccaltst {
TestCalendar ---[OK] (805ms)
TestGetSetDateAPI ---[OK] (23ms)
TestFieldGetSet ---[OK] (7ms)
TestAddRollExtensive ---[OK] (415ms)
TestGetLimits ---[OK]
TestDOWProgression ---[OK] (16ms)
TestGMTvsLocal ---[OK] (27ms)
TestGregorianChange ---[OK]
TestGetKeywordValuesForLocale ---[OK] (67ms)
TestWeekend ---[OK] (30ms)
TestFieldDifference ---[OK] (9ms)
TestAmbiguousWallTime ---[OK]
} /tsformat/ccaltst
cdattst {
TestDateFormat ---[OK] ((3.6s))
TestRelativeDateFormat ---[OK] (131ms)
TestSymbols ---[OK] (13ms)
TestDateFormatCalendar ---[OK] (21ms)
TestExtremeDates ---[OK] (340ms)
TestAllLocales ---[OK] ((45.1s))
TestRelativeCrash ---[OK] (8ms)
TestContext ---[OK] (854ms)
} /tsformat/cdattst
udatpg_test {
TestOpenClose ---[OK] (111ms)
TestUsage ---[OK] (52ms)
TestBuilder ---[OK] (60ms)
TestOptions ---[OK] (635ms)
}
cdateintervalformattest {
TestDateIntervalFormat ---[OK] (593ms)
}
cnumtst {
TestNumberFormat ---[OK] (292ms)
TestSpelloutNumberParse ---[OK] (364ms)
TestSignificantDigits ---[OK]
TestSigDigRounding ---[OK]
TestNumberFormatPadding ---[OK]
TestInt64Format ---[OK]
TestNonExistentCurrency ---[OK]
TestCurrencyRegression ---[OK] (6ms)
TestTextAttributeCrash ---[OK] (6ms)
TestRBNFFormat ---[OK] (88ms)
TestNBSPInPattern ---[OK] (58ms)
TestInt64Parse ---[OK]
TestParseZero ---[OK]
TestParseCurrency ---[OK] (257ms)
TestCloneWithRBNF ---[OK] (23ms)
} /tsformat/cnumtst
cnmdptst {
TestPatterns ---[OK] (8ms)
TestQuotes ---[OK]
TestExponential ---[OK] (30ms)
TestCurrencySign ---[OK] (6ms)
TestCurrency ---[OK] (17ms)
TestCurrencyPreEuro ---[OK] (102ms)
TestCurrencyObject ---[OK] (12ms)
TestRounding487 ---[OK]
TestDoubleAttribute ---[OK]
TestSecondaryGrouping ---[OK] (7ms)
TestCurrencyKeywords ---[OK] ( 1.27s )
TestRounding5350 ---[OK] (12ms)
TestGetKeywordValuesForLocale ---[OK] ( 0.97s )
} /tsformat/cnmdptst
cmsgtst {
OpenMessageFormatTest ---[OK] (83ms)
MessageFormatTest ---[OK] (480ms)
TestSampleMessageFormat ---[OK] (30ms)
TestSampleFormatAndParse ---[OK] (36ms)
TestSampleFormatAndParseWithError ---[OK] (35ms)
TestNewFormatAndParseAPI ---[OK] (27ms)
TestMsgFormatChoice ---[OK] (14ms)
TestParseMessage ---[OK] (9ms)
TestMessageFormatWithValist ---[OK] (74ms)
TestParseMessageWithValist ---[OK] (8ms)
TestJ904 ---[OK] (9ms)
MessageLength ---[OK]
TestErrorChaining ---[OK]
TestMsgFormatSelect ---[OK]
} /tsformat/cmsgtst
cdtrgtst {
Test4029195 ---[OK] (10ms)
Test4056591 ---[OK] (15ms)
Test4059917 ---[OK] (12ms)
Test4060212 ---[OK] (17ms)
Test4061287 ---[OK]
Test4073003 ---[OK] (12ms)
Test4162071 ---[OK] (7ms)
Test714 ---[OK] (7ms)
Test_GEec ---[OK] (25ms)
} /tsformat/cdtrgtst
cdtdptst {
TestTwoDigitYearDSTParse ---[OK] (15ms)
TestPartialParse994 ---[OK] (13ms)
TestRunTogetherPattern985 ---[OK] (9ms)
TestCzechMonths459 ---[OK] (94ms)
TestQuotePattern161 ---[OK] (10ms)
}
utmstest {
TestAPI ---[OK]
TestData ---[OK]
TestMonkey ---[OK] ( 1.01s )
TestDotNet ---[OK]
}
currtest {
TestEnumList ---[OK]
TestEnumListReset ---[OK]
TestEnumListCount ---[OK]
TestFractionDigitOverride ---[OK] (6ms)
TestPrefixSuffix ---[OK] (6ms)
TestNumericCode ---[OK]
}
cpluralrulestest {
TestPluralRules ---[OK] (11ms)
}
} /tsformat ((58.9s))
tscoll {
capitst {
TestProperty ---[OK] (134ms)
TestRuleBasedColl ---[OK] ((4.0s))
TestCompare ---[OK]
TestSortKey ---[OK]
TestHashCode ---[OK] (80ms)
TestElemIter ---[OK]
TestGetAll ---[OK]
TestDecomposition ---[OK] (20ms)
TestSafeClone ---[OK] (867ms)
TestCloneBinary ---[OK]
TestGetSetAttr ---[OK]
TestBounds ---[OK] (38ms)
TestGetLocale ---[OK] (809ms)
TestSortKeyBufferOverrun ---[OK] (7ms)
TestAttribute ---[OK]
TestGetTailoredSet ---[OK] ((1.6s))
TestMergeSortKeys ---[OK]
TestShortString ---[OK] (21ms)
TestGetContractionsAndUnsafes ---[OK] ((5.1s))
TestOpenBinary ---[OK] (809ms)
TestDefault ---[OK]
TestDefaultKeyword ---[OK] (12ms)
TestOpenVsOpenRules ---[OK] ((62.6s))
TestBengaliSortKey ---[OK] ((1.6s))
TestGetKeywordValuesForLocale ---[OK] (499ms)
} /tscoll/capitst
ccurrtst {
currTest ---[OK] (43ms)
}
cdetst {
TestTertiary ---[OK] (14ms)
TestPrimary ---[OK]
}
cestst {
TestPrimary ---[OK]
TestTertiary ---[OK]
}
cfrtst {
TestSecondary ---[OK] (275ms)
TestTertiary ---[OK] (6ms)
TestExtra ---[OK] (14ms)
TestGetSortKey ---[OK]
}
cjacoll {
TestTertiary ---[OK] (26ms)
TestBase ---[OK]
TestPlainDakutenHandakuten ---[OK]
TestSmallLarge ---[OK]
TestKatakanaHiragana ---[OK]
TestChooonKigoo ---[OK]
}
cturtst {
TestPrimary ---[OK] (107ms)
TestTertiary ---[OK]
}
encoll {
TestPrimary ---[OK]
TestSecondary ---[OK] (226ms)
TestTertiary ---[OK] (41ms)
}
cficoll {
TestPrimary ---[OK]
TestTertiary ---[OK]
}
cg7coll {
TestG7Locales ---[OK] ((2.5s))
TestDemo1 ---[OK] (809ms)
TestDemo2 ---[OK] ( 0.91s )
TestDemo3 ---[OK] (900ms)
TestDemo4 ---[OK] ( 0.92s )
}
citertst {
TestPrevious ---[OK] ((2.4s))
TestOffset ---[OK]
TestSetText ---[OK]
TestMaxExpansion ---[OK] ((2.3s))
TestUnicodeChar ---[OK] (898ms)
TestNormalizedUnicodeChar ---[OK] ( 1.00s )
TestNormalization ---[OK] (800ms)
TestBug672 ---[OK]
TestBug672Normalize ---[OK]
TestSmallBuffer ---[OK] (15ms)
TestCEs ---[OK] ( 1.47s )
TestDiscontiguos ---[OK] (797ms)
TestCEBufferOverflow ---[OK] (794ms)
TestCEValidity ---[OK] ((4.8s))
TestSortKeyValidity ---[OK] ((10.4s))
TestSearchCollatorElements ---[OK]
} /tscoll/citertst
callcoll {
TestPrimary ---[OK] (795ms)
TestSecondary ---[OK] (799ms)
TestTertiary ---[OK] (795ms)
TestIdentical ---[OK] (794ms)
TestExtra ---[OK] (809ms)
TestJB581 ---[OK]
TestVariableTop ---[OK] (786ms)
TestSurrogates ---[OK] (799ms)
TestInvalidRules ---[OK]
TestJB1401 ---[OK] (17ms)
TestJitterbug1098 ---[OK] ((3.2s))
TestFCDCrash ---[OK] (534ms)
TestJ5298 ---[OK] ((5.7s))
} /tscoll/callcoll
cmsccoll {
TestRuleOptions ---[OK] ((10.3s))
TestBeforePrefixFailure ---[OK] ((2.3s))
TestContractionClosure ---[OK] ((2.2s))
TestPrefixCompose ---[OK] (781ms)
TestStrCollIdenticalPrefix ---[OK] (783ms)
TestPrefix ---[OK] ((2.4s))
TestNewJapanese ---[OK] ((4.7s))
TestNonChars ---[OK] (213ms)
TestExtremeCompression ---[OK] ((16.3s))
TestSurrogates ---[OK] (817ms)
TestVariableTopSetting ---[OK] (222ms)
TestBocsuCoverage ---[OK]
TestCyrillicTailoring ---[OK] ((4.7s))
TestCase ---[OK] ((4.1s))
IncompleteCntTest ---[OK] ((1.6s))
BlackBirdTest ---[OK] (41ms)
FunkyATest ---[OK]
BillFairmanTest ---[OK] (74ms)
RamsRulesTest ---[OK] ((15.6s))
IsTailoredTest ---[OK] (779ms)
TestCollations ---[OK] ( 1.18s )
TestChMove ---[OK] (254ms)
TestImplicitTailoring ---[OK] ((3.1s))
TestFCDProblem ---[OK]
TestEmptyRule ---[OK]
TestJ815 ---[OK] (844ms)
TestBefore ---[OK] ( 1.01s )
TestRedundantRules ---[OK] ((25.7s))
TestExpansionSyntax ---[OK] ((7.0s))
TestHangulTailoring ---[OK] ((2.1s))
TestUCARules ---[OK] ((35.8s))
TestIncrementalNormalize ---[OK] ((86.7s))
TestComposeDecompose ---[OK] ((64.9s))
TestCompressOverlap ---[OK] (290ms)
TestContraction ---[OK] ((9.5s))
TestExpansion ---[OK] ((1.6s))
TestOptimize ---[OK] (96ms)
TestSuppressContractions ---[OK] ((1.6s))
Alexis2 ---[OK] (108ms)
TestHebrewUCA ---[OK] (20ms)
TestPartialSortKeyTermination ---[OK]
TestSettings ---[OK] (11ms)
TestEquals ---[OK] ((2.2s))
TestJ2726 ---[OK]
NullRule ---[OK]
TestNumericCollation ---[OK] (852ms)
TestTibetanConformance ---[OK]
TestPinyinProblem ---[OK]
TestImplicitGeneration ---[OK] ((59.6s))
TestSeparateTrees ---[OK] (420ms)
TestBeforePinyin ---[OK] ((2.4s))
TestBeforeTightening ---[OK] ((2.3s))
TestTailorNULL ---[OK] (781ms)
TestUpperFirstQuaternary ---[OK]
TestJ4960 ---[OK] (844ms)
TestJ5223 ---[OK]
TestJ5232 ---[OK]
TestJ5367 ---[OK] (850ms)
TestHiragana ---[OK]
TestSortKeyConsistency ---[OK]
TestVI5913 ---[OK] ((2.4s))
TestCroatianSortKey ---[OK]
TestTailor6179 ---[OK] ((1.6s))
TestUCAPrecontext ---[OK] ((1.6s))
TestOutOfBuffer5468 ---[OK]
TestSameStrengthList ---[OK] ((1.6s))
TestSameStrengthListQuoted ---[OK] ((4.7s))
TestSameStrengthListSupplemental ---[OK] ((3.1s))
TestSameStrengthListQwerty ---[OK] ((4.7s))
TestSameStrengthListQuotedQwerty ---[OK] ((2.4s))
TestSameStrengthListRanges ---[OK] (790ms)
TestSameStrengthListSupplementalRanges ---[OK] (780ms)
TestSpecialCharacters ---[OK] ((2.3s))
TestPrivateUseCharacters ---[OK] ((1.6s))
TestPrivateUseCharactersInList ---[OK] ((1.6s))
TestPrivateUseCharactersInRange ---[OK] ((1.6s))
TestInvalidListsAndRanges ---[OK] (7ms)
TestImportRulesDeWithPhonebook ---[OK] ((4.9s))
TestImport ---[OK] ((1.7s))
TestImportWithType ---[OK] ((1.8s))
TestBeforeRuleWithScriptReordering ---[OK] (777ms)
TestNonLeadBytesDuringCollationReordering ---[OK]
TestReorderingAPI ---[OK]
TestReorderingAPIWithRuleCreatedCollator ---[OK] (77ms)
TestEquivalentReorderingScripts ---[OK]
TestGreekFirstReorder ---[OK] (10ms)
TestGreekLastReorder ---[OK] (8ms)
TestNonScriptReorder ---[OK] (7ms)
TestHaniReorder ---[OK] (11ms)
TestHaniReorderWithOtherRules ---[OK] (788ms)
TestMultipleReorder ---[OK] (6ms)
TestReorderingAcrossCloning ---[OK]
TestCaseLevelBufferOverflow ---[OK]
} /tscoll/cmsccoll
usrchtst {
TestStart ---[OK] ((1.8s))
TestOpenClose ---[OK]
TestInitialization ---[OK]
TestBasic ---[OK] (14ms)
TestNormExact ---[OK] (15ms)
TestStrength ---[OK] (136ms)
TestBreakIterator ---[OK] (15ms)
TestVariable ---[OK] (7ms)
TestOverlap ---[OK]
TestCollator ---[OK] (782ms)
TestPattern ---[OK]
TestText ---[OK]
TestCompositeBoundaries ---[OK] (22ms)
TestGetSetOffset ---[OK]
TestGetSetAttribute ---[OK]
TestGetMatch ---[OK]
TestSetMatch ---[OK]
TestReset ---[OK]
TestSupplementary ---[OK] (9ms)
TestContraction ---[OK] (792ms)
TestIgnorable ---[OK] (781ms)
TestCanonical ---[OK] (17ms)
TestNormCanonical ---[OK]
TestStrengthCanonical ---[OK] (10ms)
TestBreakIteratorCanonical ---[OK] (13ms)
TestVariableCanonical ---[OK] (7ms)
TestOverlapCanonical ---[OK]
TestCollatorCanonical ---[OK] (781ms)
TestPatternCanonical ---[OK]
TestTextCanonical ---[OK]
TestCompositeBoundariesCanonical ---[OK] (22ms)
TestGetSetOffsetCanonical ---[OK]
TestSupplementaryCanonical ---[OK] (12ms)
TestContractionCanonical ---[OK] (797ms)
TestEnd ---[OK]
TestNumeric ---[OK]
TestDiacriticMatch ---[OK] (8ms)
TestForwardBackward ---[OK]
TestSearchForNull ---[OK]
TestStrengthIdentical ---[OK]
TestUsingSearchCollator ---[OK] (17ms)
TestPCEBuffer {
1_00df ---[OK]
2_dfff ---[OK]
}
TestMatchFollowedByIgnorables ---[OK]
} /tscoll/usrchtst
} /tscoll [(9m 13.3s)]
tsnorm {
cnormtst {
TestAPI ---[OK]
TestDecomp ---[OK] (22ms)
TestCompatDecomp ---[OK]
TestCanonDecompCompose ---[OK]
TestCompatDecompCompose ---[OK]
TestFCD ---[OK]
TestNull ---[OK]
TestQuickCheck ---[OK]
TestQuickCheckPerCP ---[OK] (6ms)
TestIsNormalized ---[OK]
TestCheckFCD ---[OK] (8ms)
TestNormCoverage ---[OK] (27ms)
TestConcatenate ---[OK]
TestNextPrevious ---[OK]
TestFCNFKCClosure ---[OK]
TestComposition ---[OK]
TestGetDecomposition ---[OK]
TestGetRawDecomposition ---[OK]
TestAppendRestoreMiddle ---[OK]
TestGetEasyToUseInstance ---[OK] (12ms)
} /tsnorm/cnormtst
} /tsnorm (110ms)
utrans {
TestAPI ---[OK] (465ms)
TestSimpleRules ---[OK] (36ms)
TestFilter ---[OK]
TestOpenInverse ---[OK] (814ms)
TestClone ---[OK] (9ms)
TestRegisterUnregister ---[OK] (9ms)
TestExtractBetween ---[OK]
TestUnicodeIDs ---[OK] (340ms)
} /utrans ((1.7s))
uspoof {
TestUSpoofCAPI ---[OK] ((9.5s))
} ((9.5s))
putiltst {
TestVersion ---[OK] (38ms)
TestCompareVersions ---[OK] (26ms)
TestErrorName ---[OK] (20ms)
TestPUtilAPI ---[OK] (32ms)
TestString ---[OK]
toolutil {
findBasename ---[OK]
findDirname ---[OK]
TestSignedRightShiftIsArithmetic {
" signed right shift is Arithmetic Shift Right: 1
} ---[OK]
}
} /putiltst (158ms)
} / (./cintltst) [(12m 57.1s)]
[All tests passed successfully...]
Elapsed Time: 00:12:57.354
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
---------------
ALL TESTS SUMMARY:
All tests OK: testdata intltest iotest cintltst
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
verifying that icu-config --selfcheck can operate
verifying that make -f Makefile.inc selfcheck can operate
PASS: config selfcheck OK
rm -rf test-local.xml
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
real 4h 33m 34s
user 3h 54m 23s
sys 5m 50.42s
+ touch NOW
+ sleep 2
+ time sudo env PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/bin:/opt/sbin:/opt/schplurtz/bin:/opt/schplurtz/sbin make install
make[0]: Making `install' in `stubdata'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c libicudata.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicudata.so && ln -s libicudata.so.49.1.2 libicudata.so
cd /opt/schplurtz/lib && rm -f libicudata.so.49 && ln -s libicudata.so.49.1.2 libicudata.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/stubdata'
make[0]: Making `install' in `common'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/include/unicode
mkdir /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/appendable.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/brkiter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/bytestream.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/bytestrie.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/bytestriebuilder.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/caniter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/chariter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/dbbi.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/docmain.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/dtintrv.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/errorcode.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/icudataver.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/icuplug.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/idna.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/localpointer.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/locid.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/messagepattern.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/normalizer2.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/normlzr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/parseerr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/parsepos.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/platform.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ptypes.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/putil.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/rbbi.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/rep.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/resbund.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/schriter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/std_string.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/strenum.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/stringpiece.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/stringtriebuilder.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/symtable.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ubidi.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ubrk.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucasemap.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucat.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uchar.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucharstrie.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucharstriebuilder.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uchriter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uclean.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucnv.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucnv_cb.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucnv_err.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ucnvsel.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uconfig.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/udata.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uenum.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uidna.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uiter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uloc.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/umachine.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/umisc.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unifilt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unifunct.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unimatch.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uniset.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unistr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unorm.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/unorm2.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uobject.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/urename.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/urep.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ures.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uscript.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uset.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/usetiter.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ushape.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/usprep.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ustring.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/ustringtrie.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utext.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utf.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utf16.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utf32.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utf8.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utf_old.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utrace.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/utypes.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uvernum.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/common/unicode/uversion.h /opt/schplurtz/include/unicode
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../lib/libicuuc.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicuuc.so && ln -s libicuuc.so.49.1.2 libicuuc.so
cd /opt/schplurtz/lib && rm -f libicuuc.so.49 && ln -s libicuuc.so.49.1.2 libicuuc.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/common'
make[0]: Making `install' in `i18n'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/alphaindex.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/basictz.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/bms.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/bmsearch.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/calendar.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/choicfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/coleitr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/coll.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/colldata.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/curramt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/currpinf.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/currunit.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/datefmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dcfmtsym.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/decimfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dtfmtsym.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dtitvfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dtitvinf.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dtptngen.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/dtrule.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/fieldpos.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/fmtable.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/format.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/fpositer.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/gregocal.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/locdspnm.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/measfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/measunit.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/measure.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/msgfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/numfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/numsys.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/plurfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/plurrule.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/rbnf.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/rbtz.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/regex.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/search.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/selfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/simpletz.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/smpdtfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/sortkey.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/stsearch.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tblcoll.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/timezone.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tmunit.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tmutamt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tmutfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/translit.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tzfmt.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tznames.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tzrule.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/tztrans.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ucal.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ucol.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ucoleitr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ucsdet.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ucurr.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/udat.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/udateintervalformat.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/udatpg.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/uldnames.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/ulocdata.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/umsg.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/unirepl.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/unum.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/upluralrules.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/uregex.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/usearch.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/uspoof.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/utmscale.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/utrans.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/i18n/unicode/vtzone.h /opt/schplurtz/include/unicode
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../lib/libicui18n.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicui18n.so && ln -s libicui18n.so.49.1.2 libicui18n.so
cd /opt/schplurtz/lib && rm -f libicui18n.so.49 && ln -s libicui18n.so.49.1.2 libicui18n.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/i18n'
make[0]: Making `install' in `layout'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/include/layout
mkdir /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LayoutEngine.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LEFontInstance.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LEGlyphFilter.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LEGlyphStorage.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LEInsertionList.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LELanguages.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LEScripts.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LESwaps.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/LETypes.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layout/loengine.h /opt/schplurtz/include/layout
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../lib/libicule.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicule.so && ln -s libicule.so.49.1.2 libicule.so
cd /opt/schplurtz/lib && rm -f libicule.so.49 && ln -s libicule.so.49.1.2 libicule.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layout'
make[0]: Making `install' in `layoutex'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layoutex/layout/ParagraphLayout.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layoutex/layout/RunArrays.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layoutex/layout/playout.h /opt/schplurtz/include/layout
/opt/bin/install -c -m 644 ../../source/layoutex/layout/plruns.h /opt/schplurtz/include/layout
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../lib/libiculx.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libiculx.so && ln -s libiculx.so.49.1.2 libiculx.so
cd /opt/schplurtz/lib && rm -f libiculx.so.49 && ln -s libiculx.so.49.1.2 libiculx.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/layoutex'
make[0]: Making `install' in `tools'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Making `install' in `toolutil'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../../lib/libicutu.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicutu.so && ln -s libicutu.so.49.1.2 libicutu.so
cd /opt/schplurtz/lib && rm -f libicutu.so.49 && ln -s libicutu.so.49.1.2 libicutu.so.49
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/toolutil'
make[1]: Making `install' in `ctestfw'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c libicutest.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicutest.so && ln -s libicutest.so.49.1.2 libicutest.so
cd /opt/schplurtz/lib && rm -f libicutest.so.49 && ln -s libicutest.so.49.1.2 libicutest.so.49
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/ctestfw'
make[1]: Making `install' in `makeconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 makeconv.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/makeconv /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/makeconv'
make[1]: Making `install' in `genrb'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 genrb.1 derb.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/genrb /opt/schplurtz/bin
/opt/bin/install -c ../../bin/derb /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genrb'
make[1]: Making `install' in `genbrk'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 genbrk.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/genbrk /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genbrk'
make[1]: Making `install' in `genctd'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 genctd.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/genctd /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genctd'
make[1]: Making `install' in `gencnval'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 gencnval.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/gencnval /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencnval'
make[1]: Making `install' in `gensprep'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man8
mkdir /opt/schplurtz/share/man/man8
/opt/bin/install -c -m 644 gensprep.8 /opt/schplurtz/share/man/man8
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/sbin
mkdir /opt/schplurtz/sbin
/opt/bin/install -c ../../bin/gensprep /opt/schplurtz/sbin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gensprep'
make[1]: Making `install' in `icuinfo'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c icuinfo /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icuinfo'
make[1]: Making `install' in `genccode'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man8
/opt/bin/install -c -m 644 genccode.8 /opt/schplurtz/share/man/man8
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/sbin
/opt/bin/install -c ../../bin/genccode /opt/schplurtz/sbin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/genccode'
make[1]: Making `install' in `gencmn'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man8
/opt/bin/install -c -m 644 gencmn.8 /opt/schplurtz/share/man/man8
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/sbin
/opt/bin/install -c ../../bin/gencmn /opt/schplurtz/sbin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencmn'
make[1]: Making `install' in `icupkg'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man8
/opt/bin/install -c -m 644 icupkg.8 /opt/schplurtz/share/man/man8
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/sbin
/opt/bin/install -c ../../bin/icupkg /opt/schplurtz/sbin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/icupkg'
make[1]: Making `install' in `pkgdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 pkgdata.1 /opt/schplurtz/share/man/man1
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/pkgdata /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/pkgdata'
make[1]: Making `install' in `gentest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gentest'
make[1]: Making `install' in `gennorm2'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/sbin
/opt/bin/install -c ../../bin/gennorm2 /opt/schplurtz/sbin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gennorm2'
make[1]: Making `install' in `gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/gencfu /opt/schplurtz/bin
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools/gencfu'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[2]: Nothing to be done for `install-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/tools'
make[0]: Making `install' in `data'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
LD_LIBRARY_PATH=../stubdata:../tools/ctestfw:../lib:$LD_LIBRARY_PATH MAKEFLAGS= ../bin/pkgdata -O ../data/icupkg.inc -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data/out/build/icudt49b -d ../lib -e icudt49 -T ./out/tmp -p icudt49b -m dll -r 49.1.2 -L icudata ./out/tmp/icudata.lst
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
LD_LIBRARY_PATH=../stubdata:../tools/ctestfw:../lib:$LD_LIBRARY_PATH MAKEFLAGS= ../bin/pkgdata -O ../data/icupkg.inc -q -c -s /home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data/out/build/icudt49b -d ../lib -m dll -r 49.1.2 -e icudt49 -T ./out/tmp -s ./out/build/icudt49b -p icudt49b -L icudata ./out/tmp/icudata.lst -I /opt/schplurtz/lib
pkgdata: cd ../lib/ && /opt/bin/install -c libicudata.so.49.1.2 /opt/schplurtz/lib/libicudata.so.49.1.2
pkgdata: cd /opt/schplurtz/lib && rm -f libicudata.so.49 && ln -s libicudata.so.49.1.2 libicudata.so.49
pkgdata: cd /opt/schplurtz/lib && rm -f libicudata.so && ln -s libicudata.so.49.1.2 libicudata.so
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/data'
make[0]: Making `install' in `io'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/io/unicode/ustdio.h /opt/schplurtz/include/unicode
/opt/bin/install -c -m 644 ../../source/io/unicode/ustream.h /opt/schplurtz/include/unicode
/bin/bash ../../source/mkinstalldirs /opt/schplurtz/lib
/opt/bin/install -c ../lib/libicuio.so.49.1.2 /opt/schplurtz/lib
cd /opt/schplurtz/lib && rm -f libicuio.so && ln -s libicuio.so.49.1.2 libicuio.so
cd /opt/schplurtz/lib && rm -f libicuio.so.49 && ln -s libicuio.so.49.1.2 libicuio.so.49
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/io'
make[0]: Making `install' in `extra'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Making `install' in `uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
pkgdata: gcc -DU_IS_BIG_ENDIAN=1 -D_REENTRANT -DU_DISABLE_RENAMING=1 -DU_ATTRIBUTE_DEPRECATED= -DU_CHARSET_IS_UTF8=1 -O3 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -c -I../../../source/common -I../../common -DPIC -fPIC -o uconvmsg/uconvmsg_dat.o uconvmsg/uconvmsg_dat.s
pkgdata: ar r uconvmsg/libuconvmsg.a uconvmsg/uconvmsg_dat.o
pkgdata: ranlib uconvmsg/libuconvmsg.a
g++ -DU_CHARSET_IS_UTF8=1 -O3 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long -o ../../bin/uconv uconv.o uwmsg.o -L../../lib -licui18n -L../../lib -licuuc -L../../stubdata -licudata -lpthread -ldl -lm uconvmsg/libuconvmsg.a
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/bin
/opt/bin/install -c ../../bin/uconv /opt/schplurtz/bin
/bin/bash ../../../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 uconv.1 /opt/schplurtz/share/man/man1
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra/uconv'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[2]: Nothing to be done for `install-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/extra'
make[0]: Making `install' in `samples'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Making `install' in `date'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/date'
make[1]: Making `install' in `cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples/cal'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[2]: Nothing to be done for `install-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/samples'
make[0]: Making `install' in `test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Making `install' in `testdata'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/testdata'
make[1]: Making `install' in `intltest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/intltest'
make[1]: Making `install' in `iotest'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/iotest'
make[1]: Making `install' in `cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
make[2]: Nothing to be done for `install'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test/cintltst'
make[2]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[2]: Nothing to be done for `install-local'.
make[2]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD/test'
make[1]: Entering directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
mkdir /opt/schplurtz/share/icu
mkdir /opt/schplurtz/share/icu/49.1.2
mkdir /opt/schplurtz/share/icu/49.1.2/config
mkdir /opt/schplurtz/lib/icu
mkdir /opt/schplurtz/lib/icu/49.1.2
/opt/bin/install -c -m 644 ../source/config/mh-linux /opt/schplurtz/share/icu/49.1.2/config/mh-linux
/opt/bin/install -c ../source/mkinstalldirs /opt/schplurtz/share/icu/49.1.2/mkinstalldirs
/opt/bin/install -c ../source/install-sh /opt/schplurtz/share/icu/49.1.2/install-sh
/opt/bin/install -c -m 644 ./config/icu-uc.pc ./config/icu-i18n.pc ./config/icu-io.pc ./config/icu-le.pc ./config/icu-lx.pc /opt/schplurtz/lib/pkgconfig/
/opt/bin/install -c -m 644 ../source/../license.html /opt/schplurtz/share/icu/49.1.2/license.html
/opt/bin/install -c ./config/icu-config /opt/schplurtz/bin/icu-config
/opt/bin/install -c -m 644 ./config/Makefile.inc /opt/schplurtz/lib/icu/49.1.2/Makefile.inc
/opt/bin/install -c -m 644 ./config/pkgdata.inc /opt/schplurtz/lib/icu/49.1.2/pkgdata.inc
cd /opt/schplurtz/lib/icu/49.1.2/..; \
rm -f current && ln -s 49.1.2 current; \
rm -f Makefile.inc && ln -s current/Makefile.inc Makefile.inc; \
rm -f pkgdata.inc && ln -s current/pkgdata.inc pkgdata.inc
cd . \
&& CONFIG_FILES=./config/icu-config.1 CONFIG_HEADERS= /bin/bash ./config.status
config.status: creating ./config/icu-config.1
/bin/bash ../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 config/icu-config.1 /opt/schplurtz/share/man/man1
make[1]: Leaving directory `/home/schplurtz/Replicated/SOFT/nslu2/ICU/icu/BUILD'
/opt/bin/install -c -m 644 ../source/config/mh-linux /opt/schplurtz/share/icu/49.1.2/config/mh-linux
/opt/bin/install -c ../source/mkinstalldirs /opt/schplurtz/share/icu/49.1.2/mkinstalldirs
/opt/bin/install -c ../source/install-sh /opt/schplurtz/share/icu/49.1.2/install-sh
/opt/bin/install -c -m 644 ./config/icu-uc.pc ./config/icu-i18n.pc ./config/icu-io.pc ./config/icu-le.pc ./config/icu-lx.pc /opt/schplurtz/lib/pkgconfig/
/opt/bin/install -c -m 644 ../source/../license.html /opt/schplurtz/share/icu/49.1.2/license.html
/opt/bin/install -c ./config/icu-config /opt/schplurtz/bin/icu-config
/opt/bin/install -c -m 644 ./config/Makefile.inc /opt/schplurtz/lib/icu/49.1.2/Makefile.inc
/opt/bin/install -c -m 644 ./config/pkgdata.inc /opt/schplurtz/lib/icu/49.1.2/pkgdata.inc
cd /opt/schplurtz/lib/icu/49.1.2/..; \
rm -f current && ln -s 49.1.2 current; \
rm -f Makefile.inc && ln -s current/Makefile.inc Makefile.inc; \
rm -f pkgdata.inc && ln -s current/pkgdata.inc pkgdata.inc
/bin/bash ../source/mkinstalldirs /opt/schplurtz/share/man/man1
/opt/bin/install -c -m 644 config/icu-config.1 /opt/schplurtz/share/man/man1
real 1m 9.21s
user 0m 14.24s
sys 0m 25.33s
+ date
Fri Sep 28 01:15:42 CEST 2012
+ tar cTf+ find /opt/schplurtz -newer NOW ! -type d
- nslu2-slugosbe-icu4c-49.1.2.tar
find: /opt/schplurtz/nginx-1.2.3/conf/ssl: Permission denied
find: /opt/schplurtz/nginx-1.2.3/fastcgi_temp: Permission denied
find: /opt/schplurtz/nginx-1.2.3/client_body_temp: Permission denied
tar: Removing leading `/' from member names
+ tar tvf nslu2-slugosbe-icu4c-49.1.2.tar
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicutest.so.49 -> libicutest.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicutest.so -> libicutest.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/libicudata.so.49 -> libicudata.so.49.1.2
-rwxr-xr-x root/root 1657810 2012-09-28 01:14 opt/schplurtz/lib/libicuuc.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicuuc.so.49 -> libicuuc.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicule.so -> libicule.so.49.1.2
-rwxr-xr-x root/root 59065 2012-09-28 01:14 opt/schplurtz/lib/libiculx.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/libicudata.so -> libicudata.so.49.1.2
-rwxr-xr-x root/root 2501550 2012-09-28 01:14 opt/schplurtz/lib/libicui18n.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/libicuio.so -> libicuio.so.49.1.2
-rwxr-xr-x root/root 17955983 2012-09-28 01:15 opt/schplurtz/lib/libicudata.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicutu.so -> libicutu.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicutu.so.49 -> libicutu.so.49.1.2
-rw-r--r-- root/root 1711 2012-09-28 01:15 opt/schplurtz/lib/pkgconfig/icu-io.pc
-rw-r--r-- root/root 1711 2012-09-28 01:15 opt/schplurtz/lib/pkgconfig/icu-lx.pc
-rw-r--r-- root/root 1743 2012-09-28 01:15 opt/schplurtz/lib/pkgconfig/icu-uc.pc
-rw-r--r-- root/root 1701 2012-09-28 01:15 opt/schplurtz/lib/pkgconfig/icu-le.pc
-rw-r--r-- root/root 1719 2012-09-28 01:15 opt/schplurtz/lib/pkgconfig/icu-i18n.pc
-rwxr-xr-x root/root 75736 2012-09-28 01:14 opt/schplurtz/lib/libicutest.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicuuc.so -> libicuuc.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libiculx.so -> libiculx.so.49.1.2
-rwxr-xr-x root/root 184874 2012-09-28 01:14 opt/schplurtz/lib/libicutu.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/libicuio.so.49 -> libicuio.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicui18n.so -> libicui18n.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libiculx.so.49 -> libiculx.so.49.1.2
-rwxr-xr-x root/root 309202 2012-09-28 01:14 opt/schplurtz/lib/libicule.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicule.so.49 -> libicule.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:14 opt/schplurtz/lib/libicui18n.so.49 -> libicui18n.so.49.1.2
-rwxr-xr-x root/root 52378 2012-09-28 01:15 opt/schplurtz/lib/libicuio.so.49.1.2
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/icu/pkgdata.inc -> current/pkgdata.inc
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/icu/Makefile.inc -> current/Makefile.inc
lrwxrwxrwx root/root 0 2012-09-28 01:15 opt/schplurtz/lib/icu/current -> 49.1.2
-rw-r--r-- root/root 683 2012-09-28 01:15 opt/schplurtz/lib/icu/49.1.2/pkgdata.inc
-rw-r--r-- root/root 9958 2012-09-28 01:15 opt/schplurtz/lib/icu/49.1.2/Makefile.inc
-rwxr-xr-x root/root 25055 2012-09-28 01:14 opt/schplurtz/bin/derb
-rwxr-xr-x root/root 39090 2012-09-28 01:14 opt/schplurtz/bin/pkgdata
-rwxr-xr-x root/root 13702 2012-09-28 01:14 opt/schplurtz/bin/genbrk
-rwxr-xr-x root/root 22180 2012-09-28 01:14 opt/schplurtz/bin/gencnval
-rwxr-xr-x root/root 13576 2012-09-28 01:14 opt/schplurtz/bin/icuinfo
-rwxr-xr-x root/root 46984 2012-09-28 01:14 opt/schplurtz/bin/makeconv
-rwxr-xr-x root/root 53355 2012-09-28 01:15 opt/schplurtz/bin/uconv
-rwxr-xr-x root/root 21813 2012-09-28 01:15 opt/schplurtz/bin/icu-config
-rwxr-xr-x root/root 104193 2012-09-28 01:14 opt/schplurtz/bin/genrb
-rwxr-xr-x root/root 12704 2012-09-28 01:14 opt/schplurtz/bin/gencfu
-rwxr-xr-x root/root 14623 2012-09-28 01:14 opt/schplurtz/bin/genctd
-rwxr-xr-x root/root 47591 2012-09-28 01:14 opt/schplurtz/sbin/gennorm2
-rwxr-xr-x root/root 10258 2012-09-28 01:14 opt/schplurtz/sbin/genccode
-rwxr-xr-x root/root 20825 2012-09-28 01:14 opt/schplurtz/sbin/gensprep
-rwxr-xr-x root/root 10153 2012-09-28 01:14 opt/schplurtz/sbin/gencmn
-rwxr-xr-x root/root 17554 2012-09-28 01:14 opt/schplurtz/sbin/icupkg
-rw-r--r-- root/root 9382 2012-09-28 01:14 opt/schplurtz/include/unicode/bytestream.h
-rw-r--r-- root/root 167763 2012-09-28 01:14 opt/schplurtz/include/unicode/unistr.h
-rw-r--r-- root/root 24702 2012-09-28 01:14 opt/schplurtz/include/unicode/umsg.h
-rw-r--r-- root/root 34666 2012-09-28 01:14 opt/schplurtz/include/unicode/datefmt.h
-rw-r--r-- root/root 74404 2012-09-28 01:14 opt/schplurtz/include/unicode/ustring.h
-rw-r--r-- root/root 10782 2012-09-28 01:14 opt/schplurtz/include/unicode/uclean.h
-rw-r--r-- root/root 12990 2012-09-28 01:14 opt/schplurtz/include/unicode/coleitr.h
-rw-r--r-- root/root 18674 2012-09-28 01:14 opt/schplurtz/include/unicode/utf16.h
-rw-r--r-- root/root 33822 2012-09-28 01:14 opt/schplurtz/include/unicode/messagepattern.h
-rw-r--r-- root/root 4199 2012-09-28 01:14 opt/schplurtz/include/unicode/symtable.h
-rw-r--r-- root/root 3966 2012-09-28 01:14 opt/schplurtz/include/unicode/unifunct.h
-rw-r--r-- root/root 13802 2012-09-28 01:14 opt/schplurtz/include/unicode/plurrule.h
-rw-r--r-- root/root 5468 2012-09-28 01:14 opt/schplurtz/include/unicode/parsepos.h
-rw-r--r-- root/root 9115 2012-09-28 01:14 opt/schplurtz/include/unicode/uldnames.h
-rw-r--r-- root/root 3359 2012-09-28 01:14 opt/schplurtz/include/unicode/ptypes.h
-rw-r--r-- root/root 22433 2012-09-28 01:14 opt/schplurtz/include/unicode/unorm2.h
-rw-r--r-- root/root 42450 2012-09-28 01:14 opt/schplurtz/include/unicode/numfmt.h
-rw-r--r-- root/root 6635 2012-09-28 01:14 opt/schplurtz/include/unicode/ucnv_cb.h
-rw-r--r-- root/root 13355 2012-09-28 01:14 opt/schplurtz/include/unicode/utrace.h
-rw-r--r-- root/root 29853 2012-09-28 01:14 opt/schplurtz/include/unicode/rbbi.h
-rw-r--r-- root/root 64583 2012-09-28 01:14 opt/schplurtz/include/unicode/uniset.h
-rw-r--r-- root/root 12994 2012-09-28 01:14 opt/schplurtz/include/unicode/idna.h
-rw-r--r-- root/root 6212 2012-09-28 01:14 opt/schplurtz/include/unicode/uenum.h
-rw-r--r-- root/root 13132 2012-09-28 01:14 opt/schplurtz/include/unicode/uchriter.h
-rw-r--r-- root/root 966 2012-09-28 01:14 opt/schplurtz/include/unicode/dbbi.h
-rw-r--r-- root/root 13271 2012-09-28 01:14 opt/schplurtz/include/unicode/ucurr.h
-rw-r--r-- root/root 19670 2012-09-28 01:14 opt/schplurtz/include/unicode/bytestrie.h
-rw-r--r-- root/root 22514 2012-09-28 01:14 opt/schplurtz/include/unicode/platform.h
-rw-r--r-- root/root 3471 2012-09-28 01:14 opt/schplurtz/include/unicode/tmunit.h
-rw-r--r-- root/root 5446 2012-09-28 01:14 opt/schplurtz/include/unicode/uvernum.h
-rw-r--r-- root/root 4805 2012-09-28 01:14 opt/schplurtz/include/unicode/tmutamt.h
-rw-r--r-- root/root 46179 2012-09-28 01:14 opt/schplurtz/include/unicode/simpletz.h
-rw-r--r-- root/root 46409 2012-09-28 01:14 opt/schplurtz/include/unicode/rbnf.h
-rw-r--r-- root/root 12716 2012-09-28 01:14 opt/schplurtz/include/unicode/colldata.h
-rw-r--r-- root/root 653 2012-09-28 01:14 opt/schplurtz/include/unicode/utf32.h
-rw-r--r-- root/root 12503 2012-09-28 01:14 opt/schplurtz/include/unicode/uobject.h
-rw-r--r-- root/root 15271 2012-09-28 01:14 opt/schplurtz/include/unicode/dcfmtsym.h
-rw-r--r-- root/root 7100 2012-09-28 01:14 opt/schplurtz/include/unicode/currpinf.h
-rw-r--r-- root/root 42402 2012-09-28 01:14 opt/schplurtz/include/unicode/tblcoll.h
-rw-r--r-- root/root 7501 2012-09-28 01:14 opt/schplurtz/include/unicode/bmsearch.h
-rw-r--r-- root/root 15695 2012-09-28 01:14 opt/schplurtz/include/unicode/rbtz.h
-rw-r--r-- root/root 123818 2012-09-28 01:14 opt/schplurtz/include/unicode/urename.h
-rw-r--r-- root/root 6231 2012-09-28 01:14 opt/schplurtz/include/unicode/docmain.h
-rw-r--r-- root/root 23439 2012-09-28 01:14 opt/schplurtz/include/unicode/unorm.h
-rw-r--r-- root/root 96062 2012-09-28 01:14 opt/schplurtz/include/unicode/decimfmt.h
-rw-r--r-- root/root 6101 2012-09-28 01:14 opt/schplurtz/include/unicode/tztrans.h
-rw-r--r-- root/root 85094 2012-09-28 01:14 opt/schplurtz/include/unicode/regex.h
-rw-r--r-- root/root 20009 2012-09-28 01:14 opt/schplurtz/include/unicode/dtptngen.h
-rw-r--r-- root/root 23633 2012-09-28 01:14 opt/schplurtz/include/unicode/utrans.h
-rw-r--r-- root/root 12540 2012-09-28 01:14 opt/schplurtz/include/unicode/ucoleitr.h
-rw-r--r-- root/root 3659 2012-09-28 01:14 opt/schplurtz/include/unicode/curramt.h
-rw-r--r-- root/root 11702 2012-09-28 01:14 opt/schplurtz/include/unicode/icuplug.h
-rw-r--r-- root/root 6069 2012-09-28 01:14 opt/schplurtz/include/unicode/locdspnm.h
-rw-r--r-- root/root 24279 2012-09-28 01:14 opt/schplurtz/include/unicode/chariter.h
-rw-r--r-- root/root 3290 2012-09-28 01:14 opt/schplurtz/include/unicode/unirepl.h
-rw-r--r-- root/root 4784 2012-09-28 01:14 opt/schplurtz/include/unicode/errorcode.h
-rw-r--r-- root/root 9559 2012-09-28 01:14 opt/schplurtz/include/unicode/rep.h
-rw-r--r-- root/root 6832 2012-09-28 01:14 opt/schplurtz/include/unicode/bytestriebuilder.h
-rw-r--r-- root/root 14466 2012-09-28 01:14 opt/schplurtz/include/unicode/selfmt.h
-rw-r--r-- root/root 23209 2012-09-28 01:14 opt/schplurtz/include/unicode/uiter.h
-rw-r--r-- root/root 52992 2012-09-28 01:14 opt/schplurtz/include/unicode/coll.h
-rw-r--r-- root/root 25894 2012-09-28 01:14 opt/schplurtz/include/unicode/alphaindex.h
-rw-r--r-- root/root 9888 2012-09-28 01:14 opt/schplurtz/include/unicode/strenum.h
-rw-r--r-- root/root 9606 2012-09-28 01:14 opt/schplurtz/include/unicode/usetiter.h
-rw-r--r-- root/root 45124 2012-09-28 01:14 opt/schplurtz/include/unicode/uloc.h
-rw-r--r-- root/root 30379 2012-09-28 01:14 opt/schplurtz/include/unicode/dtfmtsym.h
-rw-r--r-- root/root 8215 2012-09-28 01:14 opt/schplurtz/include/unicode/usprep.h
-rw-r--r-- root/root 8713 2012-09-28 01:14 opt/schplurtz/include/unicode/fieldpos.h
-rw-r--r-- root/root 783 2012-09-28 01:14 opt/schplurtz/include/unicode/std_string.h
-rw-r--r-- root/root 5742 2012-09-28 01:14 opt/schplurtz/include/unicode/putil.h
-rw-r--r-- root/root 16837 2012-09-28 01:14 opt/schplurtz/include/unicode/ucasemap.h
-rw-r--r-- root/root 18324 2012-09-28 01:14 opt/schplurtz/include/unicode/resbund.h
-rw-r--r-- root/root 21297 2012-09-28 01:14 opt/schplurtz/include/unicode/ucharstrie.h
-rw-r--r-- root/root 19511 2012-09-28 01:14 opt/schplurtz/include/unicode/ubrk.h
-rw-r--r-- root/root 8978 2012-09-28 01:14 opt/schplurtz/include/unicode/basictz.h
-rw-r--r-- root/root 23797 2012-09-28 01:14 opt/schplurtz/include/unicode/udatpg.h
-rw-r--r-- root/root 33609 2012-09-28 01:14 opt/schplurtz/include/unicode/uidna.h
-rw-r--r-- root/root 15023 2012-09-28 01:14 opt/schplurtz/include/unicode/udata.h
-rw-r--r-- root/root 38175 2012-09-28 01:14 opt/schplurtz/include/unicode/timezone.h
-rw-r--r-- root/root 48772 2012-09-28 01:14 opt/schplurtz/include/unicode/ucal.h
-rw-r--r-- root/root 8578 2012-09-28 01:14 opt/schplurtz/include/unicode/appendable.h
-rw-r--r-- root/root 22486 2012-09-28 01:14 opt/schplurtz/include/unicode/fmtable.h
-rw-r--r-- root/root 3600 2012-09-28 01:14 opt/schplurtz/include/unicode/unifilt.h
-rw-r--r-- root/root 23366 2012-09-28 01:14 opt/schplurtz/include/unicode/plurfmt.h
-rw-r--r-- root/root 36957 2012-09-28 01:14 opt/schplurtz/include/unicode/usearch.h
-rw-r--r-- root/root 60530 2012-09-28 01:14 opt/schplurtz/include/unicode/smpdtfmt.h
-rw-r--r-- root/root 43518 2012-09-28 01:14 opt/schplurtz/include/unicode/utf_old.h
-rw-r--r-- root/root 5371 2012-09-28 01:14 opt/schplurtz/include/unicode/ucat.h
-rw-r--r-- root/root 12905 2012-09-28 01:14 opt/schplurtz/include/unicode/ucsdet.h
-rw-r--r-- root/root 11824 2012-09-28 01:14 opt/schplurtz/include/unicode/uconfig.h
-rw-r--r-- root/root 14961 2012-09-28 01:14 opt/schplurtz/include/unicode/stringtriebuilder.h
-rw-r--r-- root/root 9295 2012-09-28 01:14 opt/schplurtz/include/unicode/localpointer.h
-rw-r--r-- root/root 40392 2012-09-28 01:14 opt/schplurtz/include/unicode/uset.h
-rw-r--r-- root/root 7403 2012-09-28 01:14 opt/schplurtz/include/unicode/caniter.h
-rw-r--r-- root/root 33314 2012-09-28 01:14 opt/schplurtz/include/unicode/tzfmt.h
-rw-r--r-- root/root 20570 2012-09-28 01:14 opt/schplurtz/include/unicode/vtzone.h
-rw-r--r-- root/root 3045 2012-09-28 01:14 opt/schplurtz/include/unicode/fpositer.h
-rw-r--r-- root/root 39058 2012-09-28 01:14 opt/schplurtz/include/unicode/unum.h
-rw-r--r-- root/root 1635 2012-09-28 01:14 opt/schplurtz/include/unicode/measunit.h
-rw-r--r-- root/root 3452 2012-09-28 01:14 opt/schplurtz/include/unicode/upluralrules.h
-rw-r--r-- root/root 11365 2012-09-28 01:14 opt/schplurtz/include/unicode/sortkey.h
-rw-r--r-- root/root 3734 2012-09-28 01:14 opt/schplurtz/include/unicode/dtintrv.h
-rw-r--r-- root/root 44011 2012-09-28 01:14 opt/schplurtz/include/unicode/msgfmt.h
-rw-r--r-- root/root 8718 2012-09-28 01:14 opt/schplurtz/include/unicode/dtrule.h
-rw-r--r-- root/root 99776 2012-09-28 01:14 opt/schplurtz/include/unicode/calendar.h
-rw-r--r-- root/root 5498 2012-09-28 01:14 opt/schplurtz/include/unicode/numsys.h
-rw-r--r-- root/root 55061 2012-09-28 01:14 opt/schplurtz/include/unicode/translit.h
-rw-r--r-- root/root 6071 2012-09-28 01:14 opt/schplurtz/include/unicode/unimatch.h
-rw-r--r-- root/root 73161 2012-09-28 01:14 opt/schplurtz/include/unicode/uregex.h
-rw-r--r-- root/root 59359 2012-09-28 01:14 opt/schplurtz/include/unicode/utext.h
-rw-r--r-- root/root 5394 2012-09-28 01:14 opt/schplurtz/include/unicode/urep.h
-rw-r--r-- root/root 19010 2012-09-28 01:14 opt/schplurtz/include/unicode/dtitvinf.h
-rw-r--r-- root/root 36057 2012-09-28 01:14 opt/schplurtz/include/unicode/tzrule.h
-rw-r--r-- root/root 3057 2012-09-28 01:14 opt/schplurtz/include/unicode/currunit.h
-rw-r--r-- root/root 13689 2012-09-28 01:14 opt/schplurtz/include/unicode/utmscale.h
-rw-r--r-- root/root 1643 2012-09-28 01:15 opt/schplurtz/include/unicode/ustream.h
-rw-r--r-- root/root 1255 2012-09-28 01:14 opt/schplurtz/include/unicode/umisc.h
-rw-r--r-- root/root 16048 2012-09-28 01:14 opt/schplurtz/include/unicode/tznames.h
-rw-r--r-- root/root 6293 2012-09-28 01:14 opt/schplurtz/include/unicode/schriter.h
-rw-r--r-- root/root 29961 2012-09-28 01:14 opt/schplurtz/include/unicode/normlzr.h
-rw-r--r-- root/root 34078 2012-09-28 01:14 opt/schplurtz/include/unicode/gregocal.h
-rw-r--r-- root/root 1984 2012-09-28 01:14 opt/schplurtz/include/unicode/measfmt.h
-rw-r--r-- root/root 29018 2012-09-28 01:14 opt/schplurtz/include/unicode/normalizer2.h
-rw-r--r-- root/root 56967 2012-09-28 01:14 opt/schplurtz/include/unicode/ucol.h
-rw-r--r-- root/root 20947 2012-09-28 01:14 opt/schplurtz/include/unicode/uscript.h
-rw-r--r-- root/root 12628 2012-09-28 01:14 opt/schplurtz/include/unicode/format.h
-rw-r--r-- root/root 41795 2012-09-28 01:14 opt/schplurtz/include/unicode/udat.h
-rw-r--r-- root/root 36781 2012-09-28 01:14 opt/schplurtz/include/unicode/ures.h
-rw-r--r-- root/root 22629 2012-09-28 01:14 opt/schplurtz/include/unicode/search.h
-rw-r--r-- root/root 31192 2012-09-28 01:14 opt/schplurtz/include/unicode/locid.h
-rw-r--r-- root/root 40184 2012-09-28 01:14 opt/schplurtz/include/unicode/dtitvfmt.h
-rw-r--r-- root/root 3114 2012-09-28 01:14 opt/schplurtz/include/unicode/ustringtrie.h
-rw-r--r-- root/root 24527 2012-09-28 01:14 opt/schplurtz/include/unicode/brkiter.h
-rw-r--r-- root/root 7822 2012-09-28 01:14 opt/schplurtz/include/unicode/utf.h
-rw-r--r-- root/root 28487 2012-09-28 01:14 opt/schplurtz/include/unicode/choicfmt.h
-rw-r--r-- root/root 31460 2012-09-28 01:14 opt/schplurtz/include/unicode/utypes.h
-rw-r--r-- root/root 90696 2012-09-28 01:14 opt/schplurtz/include/unicode/ubidi.h
-rw-r--r-- root/root 6928 2012-09-28 01:14 opt/schplurtz/include/unicode/ucharstriebuilder.h
-rw-r--r-- root/root 3321 2012-09-28 01:14 opt/schplurtz/include/unicode/measure.h
-rw-r--r-- root/root 6445 2012-09-28 01:14 opt/schplurtz/include/unicode/uversion.h
-rw-r--r-- root/root 21375 2012-09-28 01:14 opt/schplurtz/include/unicode/ucnv_err.h
-rw-r--r-- root/root 18321 2012-09-28 01:14 opt/schplurtz/include/unicode/ushape.h
-rw-r--r-- root/root 920 2012-09-28 01:14 opt/schplurtz/include/unicode/icudataver.h
-rw-r--r-- root/root 40042 2012-09-28 01:14 opt/schplurtz/include/unicode/uspoof.h
-rw-r--r-- root/root 10622 2012-09-28 01:14 opt/schplurtz/include/unicode/ulocdata.h
-rw-r--r-- root/root 84576 2012-09-28 01:14 opt/schplurtz/include/unicode/ucnv.h
-rw-r--r-- root/root 118027 2012-09-28 01:14 opt/schplurtz/include/unicode/uchar.h
-rw-r--r-- root/root 8846 2012-09-28 01:14 opt/schplurtz/include/unicode/bms.h
-rw-r--r-- root/root 22359 2012-09-28 01:14 opt/schplurtz/include/unicode/utf8.h
-rw-r--r-- root/root 8640 2012-09-28 01:14 opt/schplurtz/include/unicode/tmutfmt.h
-rw-r--r-- root/root 6529 2012-09-28 01:14 opt/schplurtz/include/unicode/stringpiece.h
-rw-r--r-- root/root 10437 2012-09-28 01:14 opt/schplurtz/include/unicode/umachine.h
-rw-r--r-- root/root 6648 2012-09-28 01:14 opt/schplurtz/include/unicode/udateintervalformat.h
-rw-r--r-- root/root 22287 2012-09-28 01:14 opt/schplurtz/include/unicode/stsearch.h
-rw-r--r-- root/root 3044 2012-09-28 01:14 opt/schplurtz/include/unicode/parseerr.h
-rw-r--r-- root/root 37938 2012-09-28 01:15 opt/schplurtz/include/unicode/ustdio.h
-rw-r--r-- root/root 6170 2012-09-28 01:14 opt/schplurtz/include/unicode/ucnvsel.h
-rw-r--r-- root/root 12187 2012-09-28 01:14 opt/schplurtz/include/layout/plruns.h
-rw-r--r-- root/root 5014 2012-09-28 01:14 opt/schplurtz/include/layout/LEScripts.h
-rw-r--r-- root/root 20659 2012-09-28 01:14 opt/schplurtz/include/layout/RunArrays.h
-rw-r--r-- root/root 13001 2012-09-28 01:14 opt/schplurtz/include/layout/playout.h
-rw-r--r-- root/root 2697 2012-09-28 01:14 opt/schplurtz/include/layout/LESwaps.h
-rw-r--r-- root/root 17344 2012-09-28 01:14 opt/schplurtz/include/layout/LEFontInstance.h
-rw-r--r-- root/root 2562 2012-09-28 01:14 opt/schplurtz/include/layout/LELanguages.h
-rw-r--r-- root/root 17055 2012-09-28 01:14 opt/schplurtz/include/layout/LEGlyphStorage.h
-rw-r--r-- root/root 6482 2012-09-28 01:14 opt/schplurtz/include/layout/loengine.h
-rw-r--r-- root/root 17996 2012-09-28 01:14 opt/schplurtz/include/layout/LETypes.h
-rw-r--r-- root/root 883 2012-09-28 01:14 opt/schplurtz/include/layout/LEGlyphFilter.h
-rw-r--r-- root/root 4636 2012-09-28 01:14 opt/schplurtz/include/layout/LEInsertionList.h
-rw-r--r-- root/root 23145 2012-09-28 01:14 opt/schplurtz/include/layout/ParagraphLayout.h
-rw-r--r-- root/root 19936 2012-09-28 01:14 opt/schplurtz/include/layout/LayoutEngine.h
-rw-r--r-- root/root 2275 2012-09-28 01:14 opt/schplurtz/share/man/man1/gencnval.1
-rw-r--r-- root/root 4826 2012-09-28 01:14 opt/schplurtz/share/man/man1/derb.1
-rw-r--r-- root/root 3796 2012-09-28 01:14 opt/schplurtz/share/man/man1/genrb.1
-rw-r--r-- root/root 10411 2012-09-28 01:15 opt/schplurtz/share/man/man1/uconv.1
-rw-r--r-- root/root 2826 2012-09-28 01:14 opt/schplurtz/share/man/man1/genctd.1
-rw-r--r-- root/root 6967 2012-09-28 01:14 opt/schplurtz/share/man/man1/pkgdata.1
-rw-r--r-- root/root 3238 2012-09-28 01:14 opt/schplurtz/share/man/man1/makeconv.1
-rw-r--r-- root/root 2835 2012-09-28 01:14 opt/schplurtz/share/man/man1/genbrk.1
-rw-r--r-- root/root 7361 2012-09-28 01:15 opt/schplurtz/share/man/man1/icu-config.1
-rw-r--r-- root/root 4985 2012-09-28 01:14 opt/schplurtz/share/man/man8/icupkg.8
-rw-r--r-- root/root 3212 2012-09-28 01:14 opt/schplurtz/share/man/man8/gencmn.8
-rw-r--r-- root/root 2599 2012-09-28 01:14 opt/schplurtz/share/man/man8/gensprep.8
-rw-r--r-- root/root 2812 2012-09-28 01:14 opt/schplurtz/share/man/man8/genccode.8
-rwxr-xr-x root/root 935 2012-09-28 01:15 opt/schplurtz/share/icu/49.1.2/mkinstalldirs
-rw-r--r-- root/root 2339 2012-09-28 01:15 opt/schplurtz/share/icu/49.1.2/config/mh-linux
-rw-r--r-- root/root 1981 2012-09-28 01:15 opt/schplurtz/share/icu/49.1.2/license.html
-rwxr-xr-x root/root 5598 2012-09-28 01:15 opt/schplurtz/share/icu/49.1.2/install-sh
+ date
Fri Sep 28 01:15:52 CEST 2012