From e265975a650a2dc9db3e6ac2737f7218ba9106c4 Mon Sep 17 00:00:00 2001 From: Nathan Glenn Date: Fri, 17 May 2024 18:11:24 -0500 Subject: [PATCH] Note when not compiling for ABI3 --- Core/ClientSMLSWIG/Python/SConscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/ClientSMLSWIG/Python/SConscript b/Core/ClientSMLSWIG/Python/SConscript index b599fed93a..27f074f16d 100644 --- a/Core/ClientSMLSWIG/Python/SConscript +++ b/Core/ClientSMLSWIG/Python/SConscript @@ -87,6 +87,8 @@ if "SOAR_PYTHON_ABI3" in env["ENV"]: print("'Requested building Python SML bindings with Python's Limited API, " "while SWIG does not support it, aborting.'", file=sys.stderr) Exit(1) +else: + print("SOAR_PYTHON_ABI3 not defined, building Python SML bindings with full (less portable) Python API...") # We add soarlib to the python_sml explicitly, as some operating systems don't pick up on this dependency, # and crash the build.