Skip to content

Commit 3a52e4e

Browse files
committed
Make sure we have a distinct SOABI
1 parent 4ed9e7c commit 3a52e4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5696,14 +5696,14 @@ AC_SUBST(SOABI)
56965696
AC_MSG_CHECKING(ABIFLAGS)
56975697
AC_MSG_RESULT($ABIFLAGS)
56985698
AC_MSG_CHECKING(SOABI)
5699-
SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
5699+
SOABI='nuitkapython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
57005700
AC_MSG_RESULT($SOABI)
57015701

57025702
# Release and debug (Py_DEBUG) ABI are compatible, but not Py_TRACE_REFS ABI
57035703
if test "$Py_DEBUG" = 'true' -a "$with_trace_refs" != "yes"; then
57045704
# Similar to SOABI but remove "d" flag from ABIFLAGS
57055705
AC_SUBST(ALT_SOABI)
5706-
ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
5706+
ALT_SOABI='nuitkapython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
57075707
AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
57085708
[Alternative SOABI used in debug build to load C extensions built in release mode])
57095709
fi

0 commit comments

Comments
 (0)