After pulling the latest updates on the fw4spl. This is the error
messages I am getting the following messages when I compile the
tutorials.
/usr/bin/ld: warning: libicuuc.so.38, needed by /home/anant/dev/
BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-gcc43-mt-
d-1_38.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libicui18n.so.38, needed by /home/anant/dev/
BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-gcc43-mt-
d-1_38.so, not found (try using -rpath or -rpath-link)
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to
`icu_3_8::Locale::~Locale()'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_tolower_3_8'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to
`icu_3_8::Collator::createInstance(icu_3_8::Locale const&,
UErrorCode&)'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to
`icu_3_8::Locale::Locale(icu_3_8::Locale const&)'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `icu_3_8::Locale::Locale()'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_isblank_3_8'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_charFromName_3_8'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_isspace_3_8'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_digit_3_8'
/home/anant/dev/BinPkgs/debug/boost_1-38-0_nux_64_D/lib/libboost_regex-
gcc43-mt-d-1_38.so: undefined reference to `u_charType_3_8'
Thanks
Anant.
It's probably because the Boost BinPkg isn't properly configured.
(Now all dependencies must be properly written in binpkg, and not in
the build.options of projects.)
This package depends on BinPkg "icu", so in the file "__init__.py" of
Boost BinPkg,
you need to write (correct) the line:
depends_on = [ 'icu']
Cheers,
Julien