mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
[OS] Implement and expose to scripting APIs get_memory_info
method instead of old get_free_static_memory
.
This commit is contained in:
parent
f178cad04a
commit
628f3b2f79
10 changed files with 275 additions and 4 deletions
|
@ -463,6 +463,9 @@ def configure(env: "Environment"):
|
|||
else:
|
||||
env.Append(LINKFLAGS=["-T", "platform/linuxbsd/pck_embed.legacy.ld"])
|
||||
|
||||
if platform.system() == "FreeBSD":
|
||||
env.Append(LINKFLAGS=["-lkvm"])
|
||||
|
||||
## Cross-compilation
|
||||
# TODO: Support cross-compilation on architectures other than x86.
|
||||
host_is_64_bit = sys.maxsize > 2**32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue