Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

help! cadence ic5033 +ubuntu 6.10

Status
Not open for further replies.

sanmuuncle

Newbie level 2
Joined
May 19, 2007
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,317
/usr/bin/uncompress: not found ubuntu

i am new to linux. i have just installed ubuntu 6.10.and want to run cadence ic5033 under it. In the past few days,i search the web and want to work the problem out .and i still get noting ,i feel upset...............


the follows is what i get when i run ./softload.....

///////////////////////////////////////////////////////////////////////////////////////////

Checking data files...

Executing control programs (pre-load) ...
sort: Warning: "+number" syntax is deprecated, please use "-k number"
sort: Warning: "+number" syntax is deprecated, please use "-k number"

Checking IC50 lnx86 P/N 356-70352-0101 CDROM # 1 ...

loading SftShrTools07.20-s003lnx86 sh: /usr/bin/uncompress: not found
dd: I/O error

SL-11: Error loading software ...
Refer to /tmp/load.msg5 for load log

////////////////////////////////////////////////////////////////////////////////////////////


the instructions i follow to install the ic5033 :

First, if your tar version is 1.5, change it to 1.4. 1.5 seems have a bug and can not operate properly.
execute SETUP.SH
exit when asked if to run softload
go to the install directory and find the following file:
modify io_fltr.c
line 33 add: #include <errno.h>, also add #include <stdlib.h> at the file top
line 54 add: #define lnx86
line 68 change: "/bin/uncompress -c"
modify process_file.c
line 511: change 1280 to 10000
gcc -o io_fltr io_fltr.c
gcc -o process_file process_file.c
modify vld:
line 424 & 425: delete +2 -3
then do the following step:
./softload
(1) load available products
(1) local
(2) other
don't view readme file
(4) cadence catalog
(a) all of the above
(2) list installed products
(3) linux operating system(lnx86)
(q)

copy license.dat to cdsroot/share/license/
ln -s tools.lnx86 tools
you need the following environment variable:
CDSDIR=
CDS_ROOT=
CDS_INST_DIR=
# the above three is the root directory of cadence
CDS_INSTALL_DIR=root_of_cds/tools/dfII
export CDS_LIC_FILE=(the path to license)
export PATH=$CDS_ROOT/TOOLS/BIN:$CDS_INSTALL_DIR/BIN:$CDS_ROOT/TOOLS/SPECTRE/BIN:$PATH

copy everything under /tools/dfII/sample/local to /tools/dfII/local
change cdsinit to .cdsinit

sudo apt-get install libstdc++2.10-glibc2.2
you also need the following environment variable:
export LD_ASSUME_KERNEL=2.4.21
do this under your /usr/lib:
sudo ln -sf libstdc++-3-libc6.2-2-2.10.0.so libstdc++-libc6.1-1.so.2
libcwait.c file is:
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
pid_t
__libc_wait (int *status)
{
int res;
asm volatile ("pushl %%ebx\n\t"
"movl %2, %%ebx\n\t"
"movl %1, %%eax\n\t"
"int $0x80\n\t"
"popl %%ebx"
: "=a" (res)
: "i" (__NR_wait4), "0" (WAIT_ANY), "c" (status), "d" (0),
"S" (0));
return res;
}
compile the file using the following command:
gcc -shared -o libcwait.so -fpic -O2 libcwait.c (NOTICE: "O" is not zero but letter o of upper case)
use also need this environment variable:
export LD_PRELOAD=/usr/lib/my/libcwait.so
(libcwait.so is generated by the previous command.
you'd better export LANG=POSIX to avoid some fonts problems when using cadence.
type icfb& in a terminal
then, enjoy ...


Trackback: **broken link removed**



////////////////////////////////////////////////////////////////////////////////////////

thanks adv.
plz help me.now i dont know what to do ..
 

ic50 ubuntu

i have change to ubuntu 5.10 .and sucess....
 

hello .. i want also cadence on my comp.. just for personal use... wanna write some skill and layout.. nothing commercial.. so is there a way to arrange with cadence.. or just look for pirated versoin. if pirated where can i download it?
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top