Add .so extension if ext_suffix is None

This commit is contained in:
Daniel Wang 2018-07-19 19:02:37 -04:00
parent dfa1995f5a
commit bb9fc86735
No known key found for this signature in database
GPG Key ID: 82968CE7F0EA634E
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ class Config(object):
self.ext_suffix = sysconfig.get_config_var("EXT_SUFFIX")
if self.ext_suffix is None:
self.ext_suffix = ""
self.ext_suffix = ".so"
self.root = "klayout"
def libname_of(self, mod):