forked from bartvdbraak/blender
33bca3075f
of python bundling on systems where python is installed to /usr/lib64 Now ABI flags are automatically detecting (by checking all available flags and checking if there's include directory exists for flag). Also, automatically set PYTHON_LIBPATH to /usr/lib64 if python scripts are stored in this folder. Bundling python on *nix platforms is now checks if python is installed to lib64 directory and if it is, python will be bundled to lib64 folder instead of lib. This will make building on openSUSE a bit less annoying
33 lines
1020 B
Python
33 lines
1020 B
Python
import os
|
|
|
|
def FindPython():
|
|
all_abi_flags = ['m', 'mu', '']
|
|
|
|
python = "/usr"
|
|
abi_flags = "m" # Most common for linux distros
|
|
version = "3.2"
|
|
|
|
# Determine ABI flags used on this system
|
|
include = os.path.join(python, "include")
|
|
for cur_flags in all_abi_flags:
|
|
inc = os.path.join(include, "python" + version + cur_flags, "Python.h")
|
|
if os.path.exists(inc):
|
|
abi_flags = cur_flags
|
|
break
|
|
|
|
# Determine whether python is in /usr/lib or /usr/lib64
|
|
lib32 = os.path.join(python, "lib", "python" + version, "sysconfig.py")
|
|
lib64 = os.path.join(python, "lib64", "python" + version, "sysconfig.py")
|
|
if os.path.exists(lib32):
|
|
libpath = "${BF_PYTHON}/lib"
|
|
elif os.path.exists(lib64):
|
|
libpath = "${BF_PYTHON}/lib64"
|
|
else:
|
|
# roll back to default value
|
|
libpath = "${BF_PYTHON}/lib"
|
|
|
|
return {'PYTHON': python,
|
|
"VERSION": version,
|
|
'LIBPATH': libpath,
|
|
'ABI_FLAGS': abi_flags}
|