I used to use the Nautilus command under terminal to enter the folder view of the graphic interface. However, after Xilinx ise14.4 is installed, the following error occurs when running this command: Nautilus: /usr/Xilinx/software/14.4/ise_ds/ISE/lib/lin64/libstdc ++. so.6: Version 'glibcxx _ 3.4.15 'not found (required by/usr/lib/x86_64-linux-gnu/libexempi. so.3) Nautilus:/usr/Xilinx/software/14.4/ise_ds/common/lib/lin64/libstdc ++. so.6: Version 'glibcxx _ 3.4.15 'not found (required by/usr/lib/x86_64-linux-gnu/libexempi. so.3) (note Yes. There are two databases! The path from "ise_ds" is different ............ This is a pitfall ......) The root cause is that the two libraries provided by Xilinx are too old. You can run the following command to view them: $ strings. /14.4/ise_ds/ISE/lib/lin64/libstdc ++. so.6 | grep "glibc" compare the output of the system library: $ strings/usr/lib32/libstdc ++. so.6 | grep "glibc" you will understand. According to the online statement, the two databases are renamed and backed up, and a link pointing to the system library is made respectively: $ ln-S/usr/lib32/libstdc ++. so.6 <your_dir>/14.4/ise_ds/ISE/lib/lin64/libstdc ++. so.6 $ ln-S/usr/lib32/libstdc ++. so.6 <your_dir>/14.4/ise_ds/common/lib/lin64/libstdc ++. so.6 Note: libstdc ++ for 64-bit Ubuntu 14.04 System. so.6 path. If no path is found under/usr/lib32/, run the following command: $ sudo apt-Get install lib32stdc ++ 6
Run Nautilus on the command line after installing ise14.4 in Ubuntu 14.04