Skip to content

Commit ff1c245

Browse files
lukasstadlerfangerer
authored andcommitted
link against python-native instead of python-jni on windows
1 parent db03350 commit ff1c245

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graalpython/com.oracle.graal.python.cext/include/pyconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
// relevant for code that is compiled without bitcode and will run only
5656
// natively. Since the pythonjni library contains all the trampolines to call
5757
// into the python-native.dll in this case, we must only depend on that.
58-
# pragma comment(lib, "pythonjni.lib")
58+
# pragma comment(lib, "python-native.lib")
5959
# endif
6060
#endif
6161

mx.graalpython/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@
980980
"extracted-dependency:graalpython:GRAALPYTHON_PYTHON_LIB",
981981
],
982982
"./libs/": [
983-
"extracted-dependency:GRAALPYTHON_NATIVE_LIBS/pythonjni.lib",
983+
"extracted-dependency:GRAALPYTHON_NATIVE_LIBS/python-native.lib",
984984
],
985985
"./lib-graalpython/": [
986986
"file:graalpython/lib-graalpython/*",

0 commit comments

Comments
 (0)