importCommand = strcat("strmin -library " libName " -strmFile " layoutPath " -logFile " libName "_in.log" )
system(importCommand )
Currently I use the code above to import 2 GDS file into different lib then I want to create a new cell, which the 2 gds top cell are placed in this new cell.
But I faced a problem that the the code after system command won't wait the system command completed and then I cannot get the cellview in the import lib.
and i also try the xstInDoTranslate and i found the same behavior
Is there any way to fix this problem or a better way to do this?