From b9466275e0d61cd592ecf299edcdcbc318b235f6 Mon Sep 17 00:00:00 2001 From: "D. Mitch Bailey" Date: Sun, 16 Feb 2025 12:39:13 -0800 Subject: [PATCH] Removed gds undefined allow and changed MAGTYPE to mag. --- scripts/compositor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/compositor.py b/scripts/compositor.py index 82d5f74c..abb4b59e 100755 --- a/scripts/compositor.py +++ b/scripts/compositor.py @@ -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") ):