Advertisement
Guest User

GCC-4.4.2 symbol error

a guest
Oct 14th, 2014
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. I am building GCC-4.4.2 ( open embedded recipe using bitbake version-1.8 ) for an x86 based system.
  2.  
  3. The configure options are as under:
  4.  
  5. "--enable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap"
  6.  
  7. It builds successfully after some minor changes and libstdc++.so.6.0.13 library is getting created successfully.
  8.  
  9. My aim is to run Citrix receiver on an x86 based target. For this, I run storebrowse as follows:
  10.  
  11. /usr/lib/ICAClient/storebrowse
  12.  
  13. But I get the following errors.
  14.  
  15.  
  16. ./storebrowse: /usr/lib/libxml2.so.2: no version information available (required by ./storebrowse)
  17. ./storebrowse: relocation error: ./storebrowse: symbol _ZTISt15basic_streambufIwSt11char_traitsIwEE, version
  18. GLIBCXX_3.4 not defined in file libstdc++.so.6 with link time reference.
  19.  
  20.  
  21. libxml2 error can be resolved by deleting and creating a new symbolic link to libxml, but, I am unable to resolve
  22.  
  23. the symbol error (_ZTISt15basic_streambufIwSt11char_traitsIwEE). I am compiling using default gcc_4.4.2.bb recipe.
  24.  
  25. Do I need to make any changes in configure options..? Please help me in this regard.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement