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
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 ????
 

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"
 

Hi this error I am meeting while setting target library ..what is going wrong here
 

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.
 

Try $target_library instead of $target_libaray
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top