Removed gds undefined allow and changed MAGTYPE to mag.

This commit is contained in:
D. Mitch Bailey 2025-02-16 12:39:13 -08:00
parent a1a8c5c115
commit b9466275e0
1 changed files with 2 additions and 2 deletions

View File

@ -210,14 +210,14 @@ if __name__ == '__main__':
# Generate final GDS
print('puts stdout "Writing final GDS. . . "', file=ofile)
print('flush stdout', file=ofile)
print('gds undefined allow', file=ofile)
print('#gds undefined allow', file=ofile)
print('cif *hier write disable', file=ofile)
print('gds write ' + gdspath + '/' + project_with_id + '.gds', file=ofile)
print('quit -noprompt', file=ofile)
myenv = os.environ.copy()
# Abstract views are appropriate for final composition
myenv['MAGTYPE'] = 'maglef'
myenv['MAGTYPE'] = 'mag'
if ( not os.path.isfile(magpath + "/" + project + "_core.mag") ):
if ( os.path.isfile(magpath + "/" + project + "_core.mag.gz") ):