compilation on OSX
This commit is contained in:
parent
6a517225a6
commit
4222306aa1
|
@ -52,7 +52,7 @@ Cell::Cell(Library* library, const Name& name)
|
|||
throw Error("Can't create " + _TName("Cell") + " : empty name");
|
||||
|
||||
if (_library->GetCell(_name))
|
||||
throw Error("Can't create " + _TName("Cell") + " : already exists");
|
||||
throw Error("Can't create " + _TName("Cell") + " " + GetString(_name) + " : already exists");
|
||||
}
|
||||
|
||||
Cell* Cell::Create(Library* library, const Name& name)
|
||||
|
|
|
@ -258,7 +258,7 @@ Net::Net(Cell* cell, const Name& name)
|
|||
throw Error("Can't create " + _TName("Net") + " : empty name");
|
||||
|
||||
if (_cell->GetNet(_name))
|
||||
throw Error("Can't create " + _TName("Net") + " : already exists");
|
||||
throw Error("Can't create " + _TName("Net ") + GetString(_name) + " : already exists");
|
||||
}
|
||||
|
||||
Net* Net::Create(Cell* cell, const Name& name)
|
||||
|
|
|
@ -25,7 +25,7 @@ SET(includes ProxyProperty.h PyBox.h PyCell.h PyCellLocator.h
|
|||
|
||||
ADD_LIBRARY(isobar SHARED ${sources})
|
||||
|
||||
TARGET_LINK_LIBRARIES(isobar hurricane)
|
||||
TARGET_LINK_LIBRARIES(isobar hurricane ${PYTHON_LIBRARIES})
|
||||
|
||||
SET(source_dir ${HURRICANE_SOURCE_DIR}/src/pyext)
|
||||
SET(binary_dir ${HURRICANE_BINARY_DIR}/src/pyext)
|
||||
|
|
Loading…
Reference in New Issue