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.

Design compiler : Getting error while setting the target library

Status
Not open for further replies.

kshitij008

Newbie level 4
Newbie level 4
Joined
Apr 22, 2015
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
36
Hi All ,

I am setting the libraries for design compilers like this
HTML:
set std_path /home/kshitij/Libaries 
set memories /home/kshitij/memories 

set std_cells $std_path/synopsys 
set mem_cell $memories/MEM

set search_path [ concat $search_path ${std_cells} ${mem_cell}]
set target_library $std_cells/STD_CELL.db 
set link_library [ $target_libaray]
Whenever I am running this in dc_shell

I am getting an error in design compiler

Error : Current design is not found

I dont know how to resolve this ????
 

jbeniston

Advanced Member level 1
Advanced Member level 1
Joined
May 5, 2005
Messages
460
Helped
106
Reputation
214
Reaction score
73
Trophy points
1,308
Activity points
3,494
set link_library [ $target_libaray]

Don't think you should be using square brackets there. Just use quotes "".

Use:

set_app_var link_library "* $target_library"
 

kshitij008

Newbie level 4
Newbie level 4
Joined
Apr 22, 2015
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
36
Hi this error I am meeting while setting target library ..what is going wrong here
 

sharath666

Advanced Member level 2
Advanced Member level 2
Joined
Apr 4, 2011
Messages
552
Helped
126
Reputation
252
Reaction score
124
Trophy points
1,323
Location
India
Activity points
3,830
There is way that you will get this error due to incorrectly specifying target_library. U need to specify the top_level design for the project. That should be the reason for this error.
In fact you can try the commands one after the other on the dc_shell terminal to find out which command exactly gives the error.
 

oratie

Full Member level 6
Full Member level 6
Joined
Jan 10, 2007
Messages
370
Helped
177
Reputation
352
Reaction score
178
Trophy points
1,323
Activity points
4,382
Try $target_library instead of $target_libaray
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top