Sono in esecuzione ubuntu, e posso costruire ICUundefined reference to `icu_56 :: :: UnicodeString UnicodeString (char firmato, unsigned short const *, int)'
ho incluso:
#include <unistr.h>
using namespace icu;
Questo è il mio metodo di generazione per ICU:
CPPFLAGS="-DU_USING_ICU_NAMESPACE=0"
CPPFLAGS="-DU_CHARSET_IS_UTF8=1"
export CFLAGS="-DU_CHARSET_IS_UTF8=1 -DU_GNUC_UTF16_STRING=1 -DU_STATIC_IMPLEMENTATION"
export CXXFLAGS="-DU_USING_ICU_NAMESPACE=0 -std=gnu++0x -DU_CHARSET_IS_UTF8=1 -DU_GNUC_UTF16_STRING=1 -DU_HAVE_CHAR16_T=1 -DUCHAR_TYPE=char16_t -Wall --std=c++0x -DU_STATIC_IMPLEMENTATION"
export CPPFLAGS="-DU_USING_ICU_NAMESPACE=0 -DU_CHARSET_IS_UTF8=1 -DU_STATIC_IMPLEMENTATION"
export LDFLAGS="-std=gnu++0x"
./runConfigureICU Linux --enable-static --disable-shared --disable-renaming
make check
sudo make install
ho quindi collegare
/usr/local/lib/libicuuc.a
e provare a compilare
icu::UnicodeString s1=UNICODE_STRING("such characters are safe 123 %-.", 32);
ma l'errore
undefined reference to `icu_56::UnicodeString::UnicodeString(signed char, unsigned short const*, int)'
ho trovato un altro post qui su SO per quanto riguarda lo stesso problema, ma quando seguo la procedura descritta non risolve il problema e potrebbe essere una versione diversa.
EDIT: Questa è l'uscita dalla IDE sulla costruzione del progetto
Cleaning Solution: myProject (Debug)
Cleaning: myProject (Debug)
Removing output files...
Clean complete
Building Solution: myProject (Debug)
Building: myProject (Debug)
Performing main compilation...
Precompiling headers
Compiling source to object files
g++ -MMD "/home/user/myProject/myProject/main.cpp" -g -O0 -std=c++11 -DDEBUG -I"/home/user/myProject/myProject/include" -I"/home/user/myProject/icu/unicode" -I"/home/user/myProject/myProject/.prec/Debug" -c -o "/home/user/myProject/myProject/bin/Debug/main.o"
Generating binary "myProject" from object files
g++ -o "/home/user/myProject/myProject/bin/Debug/myProject" "/home/user/myProject/myProject/bin/Debug/main.o"
"/home/user/myProject/icu/libicuuc.a"
/home/user/myProject/myProject/bin/Debug/main.o: In function `icuTest':
/home/user/myProject/myProject/icuTest.hpp:3: undefined reference to `icu_56::StringPiece::StringPiece(char const*)'
/home/user/myProject/myProject/icuTest.hpp:3: undefined reference to `icu_56::UnicodeString::fromUTF8(icu_56::StringPiece const&)'
/home/user/myProject/myProject/icuTest.hpp:3: undefined reference to `icu_56::UnicodeString::~UnicodeString()'
/home/user/myProject/myProject/icuTest.hpp:3: undefined reference to `icu_56::UnicodeString::~UnicodeString()'
collect2: error: ld returned 1 exit status
Build complete -- 4 errors, 0 warnings
---------------------- Done ----------------------
Build: 4 errors, 0 warnings
Se si desidera utilizzare il file .a, può essere che si può provare a '/ percorso/to/file.a' nel tuo linker step – dlmeetei
Usando 'nm', avrai un aspetto, il quale .a file ha il' UnicodeString :: ~ UnicodeString() ' – dlmeetei
Quando I" nm libicuuc.a> dump "lo fa contiene molti riferimenti a UnicodeString ma il resto è spazzatura quindi non so se sto guardando il decostruttore o no – Chris