#
d969f0b8 |
| 05-Jul-2018 |
Jim Jagielski |
This is a start in the right direction... Now try to track down why we are getting these undefined symbol errors: Undefined symbols for architecture x86_64: "std::string::find(char
This is a start in the right direction... Now try to track down why we are getting these undefined symbol errors: Undefined symbols for architecture x86_64: "std::string::find(char const*, unsigned long, unsigned long) const", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::string::_Rep::_M_destroy(std::allocator<char> const&)", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::string::_Rep::_S_empty_rep_storage", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::string::append(char const*, unsigned long)", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::string::append(std::string const&)", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::string::replace(unsigned long, unsigned long, char const*, unsigned long)", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&)", referenced from: Hunspell::spellml(char***, char const*) in libhunspell-1.3.a(hunspell.o) "std::__throw_length_error(char const*)", referenced from: std::vector<affentry, std::allocator<affentry> >::_M_fill_insert(__gnu_cxx::__normal_iterator<affentry*, std::vector<affentry, std::allocator<affentry> > >, unsigned long, affentry const&) in libhunspell-1.3.a(affixmgr.o) ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [/Users/jim/src/asf/AOO420/main/solenv/gbuild/LinkTarget.mk:251: /Users/jim/src/asf/AOO420/main/solver/420/unxmaccx.pro/workdir/LinkTarget/Library/libspell.uno.dylib] Error 1 dmake: Error code 2, while making 'all' git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1835139 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
#
a44fea77 |
| 22-Nov-2011 |
Ariel Constenla-Haile |
lingucomponent related fixes for i118627, i118628, i118629 * 118627 - Hyphenator: building the UNO component breaks due to name clash The three UNO components have been renamed t
lingucomponent related fixes for i118627, i118628, i118629 * 118627 - Hyphenator: building the UNO component breaks due to name clash The three UNO components have been renamed to use the naming scheme compname.uno: spell.uno, hyphen.uno, lnth.uno * 118629 - remove hunspell dependency from mythes hunspell was only needed for building the mythes example. Added a patch to patch the source in AOO builds and disable the example. * 118628 - remove hunspell dependency from Hyphenator and Thesaurus UNO components The dependency has been remove. Now the three components can be built independently from each other: * mythes has a category A license http://www.apache.org/legal/3party.html#category-a As a category A license, the library is ENABLED by default and is built unconditionally if the optional configure switch --with-system-mythes is missing As a side effect, building the UNO Thesaurus component is always enabled. * hunspell has a category B license http://www.apache.org/legal/3party.html#category-b as such, it is DISABLED by default. To enable the library use --enable-hunspell To use the library already present in the system instead of building it, use --with-system-hunspell As a side effect, building the UNO spell checking component is only enabled when hunspell is enabled. * hyphen has a category B license, as such it is DISABLED by default. To enable the library, use --enable-hyphen To uses the system library instead of building it, use --with-system-hyphen As side effect, building the UNO hyphenator component is only enabled when hyphen is enabled. git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1204995 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|