Hello! В сообщении от Wednesday 03 September 2008 18:28:44 Dhiogo Silva написал(а): > My question is: > Have you ever done it before? I mean, have you ported ICU to work with > SQLite?
You must to compile icu lib and after for linux: gcc -shared icu.c `icu-config --ldflags` -o libSqliteIcu.so for windows (ms visual studio): cl.exe -shared icu.c -lm -L/usr/lib -licui18n -licuuc -licudata -lm -o libSqliteIcu.dll for windows (mingw): gcc.exe -shared icu.c -lm -L. -LC:/icu-3.8/lib/ -licuin -licuuc -licudt -o libSqliteIcu.dll -ladvapi32 -IC:/icu-3.8/include -I. -IC:/sqlite3-3.5.9/src In linux debian icu module work fine but for windows is't work bad. I don't know why and I have no acess to windows host permanently. I you know please speak me. P.S. Arm arch is supported by debian linux and you can get from debian repository icu lib for arm. Best regards, Alexey. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

