2019-03-26 23:51:51 +00:00
|
|
|
#!/usr/bin/env python
|
2017-04-18 00:16:57 +00:00
|
|
|
|
2019-03-26 23:51:51 +00:00
|
|
|
import os
|
2022-05-29 08:51:33 +00:00
|
|
|
import platform
|
2019-03-26 23:51:51 +00:00
|
|
|
import sys
|
2019-11-26 19:26:06 +00:00
|
|
|
import subprocess
|
2022-04-30 13:49:51 +00:00
|
|
|
from binding_generator import scons_generate_bindings, scons_emit_files
|
2019-11-26 19:26:06 +00:00
|
|
|
|
2022-07-04 15:50:54 +00:00
|
|
|
EnsureSConsVersion(4, 0)
|
|
|
|
|
2021-08-18 14:03:52 +00:00
|
|
|
|
2018-02-22 22:16:25 +00:00
|
|
|
def add_sources(sources, dir, extension):
|
2019-03-26 23:51:51 +00:00
|
|
|
for f in os.listdir(dir):
|
2021-08-18 14:03:52 +00:00
|
|
|
if f.endswith("." + extension):
|
|
|
|
sources.append(dir + "/" + f)
|
2018-02-22 22:16:25 +00:00
|
|
|
|
2019-03-26 23:51:51 +00:00
|
|
|
|
|
|
|
# Try to detect the host platform automatically.
|
2018-08-16 14:14:35 +00:00
|
|
|
# This is used if no `platform` argument is passed
|
2021-08-18 14:03:52 +00:00
|
|
|
if sys.platform.startswith("linux"):
|
2022-06-06 13:09:32 +00:00
|
|
|
default_platform = "linux"
|
2021-08-18 14:03:52 +00:00
|
|
|
elif sys.platform == "darwin":
|
2022-06-06 13:09:32 +00:00
|
|
|
default_platform = "osx"
|
2021-08-18 14:03:52 +00:00
|
|
|
elif sys.platform == "win32" or sys.platform == "msys":
|
2022-06-06 13:09:32 +00:00
|
|
|
default_platform = "windows"
|
|
|
|
elif ARGUMENTS.get("platform", ""):
|
|
|
|
default_platform = ARGUMENTS.get("platform")
|
2018-08-16 14:14:35 +00:00
|
|
|
else:
|
2021-09-29 20:19:36 +00:00
|
|
|
raise ValueError("Could not detect platform automatically, please specify with platform=<platform>")
|
2018-02-22 22:16:25 +00:00
|
|
|
|
2022-06-06 13:09:32 +00:00
|
|
|
env = Environment(tools=["default"])
|
2020-03-30 21:58:20 +00:00
|
|
|
|
2022-07-17 10:34:42 +00:00
|
|
|
# Default num_jobs to local cpu count if not user specified.
|
|
|
|
# SCons has a peculiarity where user-specified options won't be overridden
|
|
|
|
# by SetOption, so we can rely on this to know if we should use our default.
|
|
|
|
initial_num_jobs = env.GetOption("num_jobs")
|
|
|
|
altered_num_jobs = initial_num_jobs + 1
|
|
|
|
env.SetOption("num_jobs", altered_num_jobs)
|
|
|
|
if env.GetOption("num_jobs") == altered_num_jobs:
|
|
|
|
cpu_count = os.cpu_count()
|
|
|
|
if cpu_count is None:
|
|
|
|
print("Couldn't auto-detect CPU count to configure build parallelism. Specify it with the -j argument.")
|
|
|
|
else:
|
|
|
|
safer_cpu_count = cpu_count if cpu_count <= 4 else cpu_count - 1
|
|
|
|
print(
|
|
|
|
"Auto-detected %d CPU cores available for build parallelism. Using %d cores by default. You can override it with the -j argument."
|
|
|
|
% (cpu_count, safer_cpu_count)
|
|
|
|
)
|
|
|
|
env.SetOption("num_jobs", safer_cpu_count)
|
|
|
|
|
2022-06-06 13:09:32 +00:00
|
|
|
platforms = ("linux", "osx", "windows", "android", "ios", "javascript")
|
2018-08-16 14:14:35 +00:00
|
|
|
opts = Variables([], ARGUMENTS)
|
2021-08-18 14:03:52 +00:00
|
|
|
opts.Add(
|
|
|
|
EnumVariable(
|
|
|
|
"platform",
|
|
|
|
"Target platform",
|
2022-06-06 13:09:32 +00:00
|
|
|
default_platform,
|
|
|
|
allowed_values=platforms,
|
2021-08-18 14:03:52 +00:00
|
|
|
ignorecase=2,
|
|
|
|
)
|
|
|
|
)
|
2022-05-29 08:51:33 +00:00
|
|
|
|
2018-08-16 14:14:35 +00:00
|
|
|
# Must be the same setting as used for cpp_bindings
|
2021-08-18 14:03:52 +00:00
|
|
|
opts.Add(EnumVariable("target", "Compilation target", "debug", allowed_values=("debug", "release"), ignorecase=2))
|
2020-12-03 20:30:59 +00:00
|
|
|
opts.Add(
|
2021-08-18 14:03:52 +00:00
|
|
|
PathVariable(
|
2021-09-27 11:04:56 +00:00
|
|
|
"headers_dir", "Path to the directory containing Godot headers", "godot-headers", PathVariable.PathIsDir
|
2021-08-18 14:03:52 +00:00
|
|
|
)
|
2020-12-03 20:30:59 +00:00
|
|
|
)
|
2021-08-18 14:03:52 +00:00
|
|
|
opts.Add(PathVariable("custom_api_file", "Path to a custom JSON API file", None, PathVariable.PathIsFile))
|
2021-07-05 14:07:55 +00:00
|
|
|
opts.Add(
|
2022-04-30 13:49:51 +00:00
|
|
|
BoolVariable("generate_bindings", "Force GDExtension API bindings generation. Auto-detected by default.", False)
|
2021-07-05 14:07:55 +00:00
|
|
|
)
|
2021-08-18 14:03:52 +00:00
|
|
|
opts.Add(BoolVariable("generate_template_get_node", "Generate a template version of the Node class's get_node.", True))
|
2017-04-18 00:16:57 +00:00
|
|
|
|
2021-09-30 02:29:42 +00:00
|
|
|
opts.Add(BoolVariable("build_library", "Build the godot-cpp library.", True))
|
2022-03-20 16:19:27 +00:00
|
|
|
opts.Add(EnumVariable("float", "Floating-point precision", "32", ("32", "64")))
|
2021-09-30 02:29:42 +00:00
|
|
|
|
2022-06-06 13:09:32 +00:00
|
|
|
# Add platform options
|
|
|
|
tools = {}
|
|
|
|
for pl in platforms:
|
|
|
|
tool = Tool(pl, toolpath=["tools"])
|
|
|
|
if hasattr(tool, "options"):
|
|
|
|
tool.options(opts)
|
|
|
|
tools[pl] = tool
|
|
|
|
|
2022-05-29 08:51:33 +00:00
|
|
|
# CPU architecture options.
|
|
|
|
architecture_array = ["", "universal", "x86_32", "x86_64", "arm32", "arm64", "rv64", "ppc32", "ppc64", "wasm32"]
|
|
|
|
architecture_aliases = {
|
|
|
|
"x64": "x86_64",
|
|
|
|
"amd64": "x86_64",
|
|
|
|
"armv7": "arm32",
|
|
|
|
"armv8": "arm64",
|
|
|
|
"arm64v8": "arm64",
|
|
|
|
"aarch64": "arm64",
|
|
|
|
"rv": "rv64",
|
|
|
|
"riscv": "rv64",
|
|
|
|
"riscv64": "rv64",
|
|
|
|
"ppcle": "ppc32",
|
|
|
|
"ppc": "ppc32",
|
|
|
|
"ppc64le": "ppc64",
|
|
|
|
}
|
|
|
|
opts.Add(EnumVariable("arch", "CPU architecture", "", architecture_array, architecture_aliases))
|
|
|
|
|
2018-08-16 14:14:35 +00:00
|
|
|
opts.Update(env)
|
|
|
|
Help(opts.GenerateHelpText(env))
|
2017-04-18 00:16:57 +00:00
|
|
|
|
2022-05-29 08:51:33 +00:00
|
|
|
# Process CPU architecture argument.
|
|
|
|
if env["arch"] == "":
|
|
|
|
# No architecture specified. Default to arm64 if building for Android,
|
|
|
|
# universal if building for macOS or iOS, wasm32 if building for web,
|
|
|
|
# otherwise default to the host architecture.
|
|
|
|
if env["platform"] in ["osx", "ios"]:
|
|
|
|
env["arch"] = "universal"
|
|
|
|
elif env["platform"] == "android":
|
|
|
|
env["arch"] = "arm64"
|
|
|
|
elif env["platform"] == "javascript":
|
|
|
|
env["arch"] = "wasm32"
|
|
|
|
else:
|
|
|
|
host_machine = platform.machine().lower()
|
|
|
|
if host_machine in architecture_array:
|
|
|
|
env["arch"] = host_machine
|
|
|
|
elif host_machine in architecture_aliases.keys():
|
|
|
|
env["arch"] = architecture_aliases[host_machine]
|
|
|
|
elif "86" in host_machine:
|
|
|
|
# Catches x86, i386, i486, i586, i686, etc.
|
|
|
|
env["arch"] = "x86_32"
|
|
|
|
else:
|
|
|
|
print("Unsupported CPU architecture: " + host_machine)
|
|
|
|
Exit()
|
|
|
|
|
2022-06-06 13:09:32 +00:00
|
|
|
tool = Tool(env["platform"], toolpath=["tools"])
|
|
|
|
|
|
|
|
if tool is None or not tool.exists(env):
|
|
|
|
raise ValueError("Required toolchain not found for platform " + env["platform"])
|
|
|
|
|
|
|
|
tool.generate(env)
|
2022-05-29 08:51:33 +00:00
|
|
|
|
2021-11-23 21:41:52 +00:00
|
|
|
# Detect and print a warning listing unknown SCons variables to ease troubleshooting.
|
|
|
|
unknown = opts.UnknownVariables()
|
|
|
|
if unknown:
|
|
|
|
print("WARNING: Unknown SCons variables were passed and will be ignored:")
|
|
|
|
for item in unknown.items():
|
|
|
|
print(" " + item[0] + "=" + item[1])
|
|
|
|
|
2022-05-29 08:51:33 +00:00
|
|
|
print("Building for architecture " + env["arch"] + " on platform " + env["platform"])
|
|
|
|
|
2021-09-29 21:00:24 +00:00
|
|
|
# Require C++17
|
2022-06-06 13:09:32 +00:00
|
|
|
if env.get("is_msvc", False):
|
2022-02-16 11:12:10 +00:00
|
|
|
env.Append(CXXFLAGS=["/std:c++17"])
|
2021-09-29 21:00:24 +00:00
|
|
|
else:
|
2022-02-16 11:12:10 +00:00
|
|
|
env.Append(CXXFLAGS=["-std=c++17"])
|
2021-09-29 21:00:24 +00:00
|
|
|
|
2021-08-19 17:47:56 +00:00
|
|
|
if env["target"] == "debug":
|
|
|
|
env.Append(CPPDEFINES=["DEBUG_ENABLED", "DEBUG_METHODS_ENABLED"])
|
|
|
|
|
2022-03-20 16:19:27 +00:00
|
|
|
if env["float"] == "64":
|
|
|
|
env.Append(CPPDEFINES=["REAL_T_IS_DOUBLE"])
|
|
|
|
|
2021-08-18 14:03:52 +00:00
|
|
|
|
2022-04-30 13:49:51 +00:00
|
|
|
# Generate bindings
|
|
|
|
env.Append(BUILDERS={"GenerateBindings": Builder(action=scons_generate_bindings, emitter=scons_emit_files)})
|
2021-08-18 14:03:52 +00:00
|
|
|
json_api_file = ""
|
2018-02-22 22:16:25 +00:00
|
|
|
|
2021-08-18 14:03:52 +00:00
|
|
|
if "custom_api_file" in env:
|
|
|
|
json_api_file = env["custom_api_file"]
|
2018-05-16 00:05:41 +00:00
|
|
|
else:
|
2021-08-18 14:03:52 +00:00
|
|
|
json_api_file = os.path.join(os.getcwd(), env["headers_dir"], "extension_api.json")
|
2017-03-06 07:49:24 +00:00
|
|
|
|
2022-04-30 13:49:51 +00:00
|
|
|
bindings = env.GenerateBindings(
|
|
|
|
env.Dir("."), [json_api_file, os.path.join(env["headers_dir"], "godot", "gdnative_interface.h")]
|
|
|
|
)
|
2021-02-03 22:48:58 +00:00
|
|
|
|
2022-04-30 13:49:51 +00:00
|
|
|
# Forces bindings regeneration.
|
|
|
|
if env["generate_bindings"]:
|
|
|
|
AlwaysBuild(bindings)
|
2017-04-18 00:16:57 +00:00
|
|
|
|
2022-04-30 13:49:51 +00:00
|
|
|
# Includes
|
|
|
|
env.Append(CPPPATH=[[env.Dir(d) for d in [env["headers_dir"], "include", os.path.join("gen", "include")]]])
|
2017-03-06 07:49:24 +00:00
|
|
|
|
2019-03-26 23:51:51 +00:00
|
|
|
# Sources to compile
|
2018-02-22 22:16:25 +00:00
|
|
|
sources = []
|
2021-08-19 17:47:56 +00:00
|
|
|
add_sources(sources, "src", "cpp")
|
2021-11-30 13:00:13 +00:00
|
|
|
add_sources(sources, "src/classes", "cpp")
|
2021-08-18 14:03:52 +00:00
|
|
|
add_sources(sources, "src/core", "cpp")
|
|
|
|
add_sources(sources, "src/variant", "cpp")
|
2022-04-30 13:49:51 +00:00
|
|
|
sources.extend([f for f in bindings if str(f).endswith(".cpp")])
|
2021-08-18 14:03:52 +00:00
|
|
|
|
2022-05-29 08:51:33 +00:00
|
|
|
env["arch_suffix"] = env["arch"]
|
|
|
|
if env["ios_simulator"]:
|
|
|
|
env["arch_suffix"] += ".simulator"
|
2019-11-26 19:26:06 +00:00
|
|
|
|
2021-09-30 02:29:42 +00:00
|
|
|
library = None
|
2022-02-10 14:18:22 +00:00
|
|
|
env["OBJSUFFIX"] = ".{}.{}.{}{}".format(env["platform"], env["target"], env["arch_suffix"], env["OBJSUFFIX"])
|
|
|
|
library_name = "libgodot-cpp.{}.{}.{}{}".format(env["platform"], env["target"], env["arch_suffix"], env["LIBSUFFIX"])
|
2021-09-30 02:29:42 +00:00
|
|
|
|
|
|
|
if env["build_library"]:
|
|
|
|
library = env.StaticLibrary(target=env.File("bin/%s" % library_name), source=sources)
|
|
|
|
Default(library)
|
|
|
|
|
|
|
|
env.Append(LIBPATH=[env.Dir("bin")])
|
|
|
|
env.Append(LIBS=library_name)
|
|
|
|
Return("env")
|