We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bceddba commit c092bfcCopy full SHA for c092bfc
setup.py
@@ -35,13 +35,15 @@
35
extra_compile_args.extend(nodebug_opts)
36
extra_link_args.extend(nodebug_opts)
37
38
+if not is_mac and not is_win:
39
+ extra_link_args.append('-Wl,--version-script=src/Symbol.map')
40
+elif is_mac:
41
+ extra_link_args.extend(['-bundle', '-undefined', 'dynamic_lookup'])
42
+
43
module1 = Extension(LAP_MOD_NAME, sources = lap_srcs, \
44
extra_link_args = extra_link_args, \
45
extra_compile_args = extra_compile_args)
46
-if not is_mac and not is_win:
- extra_link_args.append('-Wl,--version-script=src/Symbol.map')
-
47
def get_ex_mod():
48
if 'NO_PY_EXT' in os.environ:
49
return None
0 commit comments