yannoo95170
Member level 1
- Joined
- May 13, 2013
- Messages
- 36
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Activity points
- 1,724
XPCOMGlueLoad error for file /usr/lib/firefox/libxpcom.so:
libxul.so: cannot open shared object file: No such file or directory
Couldn't load XPCOM.
module main;
initial
begin
$display("Hello, World");
$finish ;
end
endmodule
------------------------------------------------------------------------------
/opt/Xilinx/14.5/ISE_DS/ISE/bin/lin/unwrapped/compxlib -s mti_se -l verilog -arch spartan3e -lib unisim -lib simprim -lib xilinxcorelib -lib edk -exclude_superseded -intstyle ise
------------------------------------------------------------------------------
ERROR:Compxlib - COMPXLIB[sim]: Unable to automatically find executables for simulator 'mti_se' from the following paths:
/opt/Xilinx/14.5/ISE_DS/ISE//bin/lin
/opt/Xilinx/14.5/ISE_DS/ISE/bin/lin
/opt/Xilinx/14.5/ISE_DS/ISE/sysgen/util
/opt/Xilinx/14.5/ISE_DS/ISE/sysgen/bin
/opt/Xilinx/14.5/ISE_DS/ISE/../../../DocNav
/opt/Xilinx/14.5/ISE_DS/PlanAhead/bin
/opt/Xilinx/14.5/ISE_DS/EDK/bin/lin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/powerpc-eabi/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/arm/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/linux_toolchain/lin32_be/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/linux_toolchain/lin32_le/bin
/opt/Xilinx/14.5/ISE_DS/common/bin/lin
/usr/lib/lightdm/lightdm
/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin
/usr/games
/usr/local/games.
Simulator 'mti_se' is ignored.
Process "Compile HDL Simulation Libraries" failed
XPCOMGlueLoad error for file /usr/lib/firefox/libxpcom.so:
libxul.so: cannot open shared object file: No such file or directory
Couldn't load XPCOM.
mti_se related errors: try using ISim instead and get that working first. After that you can always worry about modelsim.
ERROR:Compxlib - COMPXLIB[sim]: Unable to automatically find executables for simulator 'XXXXsim' from the following paths:
/opt/Xilinx/14.5/ISE_DS/ISE//bin/lin
/opt/Xilinx/14.5/ISE_DS/ISE/bin/lin
/opt/Xilinx/14.5/ISE_DS/ISE/sysgen/util
/opt/Xilinx/14.5/ISE_DS/ISE/sysgen/bin
/opt/Xilinx/14.5/ISE_DS/ISE/../../../DocNav
/opt/Xilinx/14.5/ISE_DS/PlanAhead/bin
/opt/Xilinx/14.5/ISE_DS/EDK/bin/lin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/powerpc-eabi/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/arm/lin/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/linux_toolchain/lin32_be/bin
/opt/Xilinx/14.5/ISE_DS/EDK/gnu/microblaze/linux_toolchain/lin32_le/bin
/opt/Xilinx/14.5/ISE_DS/common/bin/lin
/usr/lib/lightdm/lightdm
/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin
/usr/games
/usr/local/games.
Simulator 'XXXXXsim' is ignored.
Process "Compile HDL Simulation Libraries" failed
A disk write failure occurred. There may be insufficient disk space or you may not have write permission at the following directory.
/opt/Xilinx/14.5/ISE_DS/.xinstall
Press Retry to try again, press Cancel to exit XilinxNotify.
#!/bin/bash
cd /opt/Xilinx/14.5/ISE_DS
source settings32.sh
export XIL_IMPACT_USE_LIBUSB=1
ise &
Ubuntu se trouve installé depuis la dernière rentrée parlementaire sur le poste de chaque député. L'observatoire DesktopLinux le crédite de 30,3 % de parts de marché sur le bureau Linux, loin devant Suse (19,6 %), Red Hat (7,4 %) et Mandriva (3 %).
1) download Xilinx_ISE_DS_Lin_14.5_P.58f_4.tar
2) untar the archive
3) cd Xilinx_ISE_DS_Lin_14.5_P.58f_4
4) run ./xsetup (after verification for the write permission into the selected repertory)
5) select USB cable driver
6) wait a long time for the install ...
6bis) but kill the two java process that block the install (near 85% and 91%)
7) correct ISE libstdc++ bad libs
cd /opt/Xilinx/14.5/ISE_DS/ISE/lib/lin
mv libstdc++.so libstdc++.so-orig
mv libstdc++.so.6 libstdc++.so.6-orig
mv libstdc++.so.6.0.8 libstdc++.so.6.0.8-orig
ln -s /usr/lib/libstdc++.so
ln -s libstdc++.so libstdc++.so.6
ln -s libstdc++.so libstdc++.so.6.0.8
cd /opt/Xilinx/14.5/ISE_DS/common/lib/lin
mv libstdc++.so libstdc++.so-orig
mv libstdc++.so.6 libstdc++.so.6-orig
mv libstdc++.so.6.0.8 libstdc++.so.6.0.8-orig
ln -s /usr/lib/libstdc++.so
ln -s libstdc++.so libstdc++.so.6
ln -s libstdc++.so libstdc++.so.6.0.8
8) add ISE variables to the user's defaults variables (at the end of ~/.bashrc for bash)
source /opt/Xilinx/14.5/ISE_DS/settings32.sh > /dev/null
9) launch ise
10) modify Edit/preferences/HTML browser to "/usr/bin/firefox %1"
12) create a very little project that use only this basic hello.vl :
module main;
initial
begin
$display("Hello, World");
$finish ;
end
endmodule
13) Run the Compile HDL compilation
iverilog -parch=spartan3 -o $1.edf $1.vl
edif2ngd $1.edf $1.ngo
ngdbuild -p xc3s500e-pq208 $1.ngo $1.ngd
Release 14.5 - edif2ngd P.58f (lin)
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 14.5 edif2ngd P.58f (lin)
INFO:NgdBuild - Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
ERROR:NgdBuild:196 - On or above line 1 in file "hello.edf": Problem parsing
"#". This likely means that the EDIF netlist was improperly written. Please
contact the vendor of the program that produced this EDIF.
Release 14.5 - ngdbuild P.58f (lin)
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Command Line: /opt/Xilinx/14.5/ISE_DS/ISE/bin/lin/unwrapped/ngdbuild -p
xc3s500e-pq208 hello.ngo hello.ngd
Executing edif2ngd "hello.edf" "hello.ngo"
Release 14.5 - edif2ngd P.58f (lin)
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 14.5 edif2ngd P.58f (lin)
INFO:NgdBuild - Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
ERROR:NgdBuild:196 - On or above line 1 in file "hello.edf": Problem parsing
"#". This likely means that the EDIF netlist was improperly written. Please
contact the vendor of the program that produced this EDIF.
ERROR:NgdBuild:276 - edif2ngd exited with errors (return code 2).
ERROR:NgdBuild:28 - edif2ngd did not successfully complete. Please check
preceding errors for root cause.
Total REAL time to NGDBUILD completion: 12 sec
Total CPU time to NGDBUILD completion: 4 sec
Writing NGDBUILD log file "hello.bld"...
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?