These errors indicate that the supporting 32-bit libraries have not been properly installed!
So you have install missing libraries:
sudo apt-get install gcc-multilib
export LIBRARY_PATH=/usr/lib/$(gcc -print-multiarch)
export C_INCLUDE_PATH=/usr/include/$(gcc -print-multiarch)
export CPLUS_INCLUDE_PATH=/usr/include/$(gcc -print-multiarch)
Save the export instructions (for example in your .bashrc).
To test on the fly:
- close eclipse
- open a console
- type exports instructions
- launch eclipse from console
Question is answered also here.
edit
Your problem is that you have gcc in
/usr/local/lib
Instead that in:
/usr/lib
So check this solution:
- open a console
- export PATH=/usr/local/bin:$PATH
- sudo ldconfig
- launch eclipse