Skip to content

Commit 47cd298

Browse files
timfelqunaibit
authored andcommitted
meson fix
1 parent 4edeb11 commit 47cd298

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/lib-graalpython/_sysconfig.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,14 @@ def _get_posix_vars():
9999
if darwin_native:
100100
g['LDSHARED'] = get_toolchain('CC') + " -bundle -undefined dynamic_lookup"
101101
g['LDFLAGS'] = "-bundle -undefined dynamic_lookup"
102+
g['LIBPYTHON'] = ''
102103
elif win32_native:
103104
g['LDFLAGS'] = f"-L{__graalpython__.capi_home.replace(os.path.sep, '/')}"
104105
g['LDSHARED_WINDOWS'] = f"{g['LDSHARED_LINUX']} {g['LDFLAGS']}"
105106
g['LDSHARED'] = g['LDSHARED_WINDOWS']
106107
else:
107108
g['LDSHARED'] = g['LDSHARED_LINUX']
109+
g['LIBPYTHON'] = ''
108110
g['SOABI'] = so_abi
109111
g['EXT_SUFFIX'] = "." + so_abi + so_ext
110112
g['SHLIB_SUFFIX'] = so_ext

0 commit comments

Comments
 (0)