mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00

This allows Apple platforms to override the default stack size of a thread in the WorkerThreadPool, which is 512KiB by default. This must be increased, as SPIRV-Cross, used by the Metal driver, can use deeply nested stacks, as can debug builds.
8 lines
200 B
Python
8 lines
200 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
|
|
# Driver source files
|
|
env.add_source_files(env.drivers_sources, "*.mm")
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|