Compare commits
4 Commits
1524cd37a5
...
5a4bb54820
Author | SHA1 | Date |
---|---|---|
Дмитрий Сальников | 5a4bb54820 | |
David Snopek | 36847f6af0 | |
MJacred | 8a535d0ecc | |
DmitriySalnikov | 62a820d9fb |
|
@ -58,7 +58,7 @@ first-party `godot-cpp` extension.
|
|||
Some compatibility breakage is to be expected as GDExtension and `godot-cpp`
|
||||
get more used, documented, and critical issues get resolved. See the
|
||||
[Godot issue tracker](https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Atopic%3Agdextension)
|
||||
and the [godot-cpp issue tracker](https://github.com/godotengine/godot/issues)
|
||||
and the [godot-cpp issue tracker](https://github.com/godotengine/godot-cpp/issues)
|
||||
for a list of known issues, and be sure to provide feedback on issues and PRs
|
||||
which affect your use of this extension.
|
||||
|
||||
|
|
|
@ -35,8 +35,13 @@ elif env["platform"] == "ios":
|
|||
source=sources,
|
||||
)
|
||||
else:
|
||||
library_path = "project/bin/libgdexample{}{}".format(env["suffix"], env["SHLIBSUFFIX"])
|
||||
|
||||
if env.get("is_msvc", False) and env["debug_symbols"] and env["use_hot_reload"]:
|
||||
env.MSVCTryRenamePDB(library_path)
|
||||
|
||||
library = env.SharedLibrary(
|
||||
"project/bin/libgdexample{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
|
||||
library_path,
|
||||
source=sources,
|
||||
)
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
[configuration]
|
||||
|
||||
entry_symbol = "example_library_init"
|
||||
compatibility_minimum = "4.1"
|
||||
compatibility_minimum = "4.2"
|
||||
reloadable = true
|
||||
|
||||
[libraries]
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import os, sys, platform
|
||||
import methods
|
||||
|
||||
from SCons.Variables import EnumVariable, PathVariable, BoolVariable
|
||||
from SCons.Tool import Tool
|
||||
|
@ -319,6 +320,9 @@ def generate(env):
|
|||
env.Append(BUILDERS={"GodotCPPBindings": Builder(action=scons_generate_bindings, emitter=scons_emit_files)})
|
||||
env.AddMethod(_godot_cpp, "GodotCPP")
|
||||
|
||||
# Global methods
|
||||
env.AddMethod(methods.msvc_try_rename_pdb, "MSVCTryRenamePDB")
|
||||
|
||||
|
||||
def _godot_cpp(env):
|
||||
extension_dir = normalize_path(env.get("gdextension_dir", env.Dir("gdextension").abspath), env)
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
import os
|
||||
|
||||
# Useful methods for custom scripts
|
||||
|
||||
|
||||
# A utility function for getting the name of an unblocked file
|
||||
def _get_unblocked_file_name(original_file_path, new_file_ext, max_files=256, keep_newest_one=True):
|
||||
lib_dir = os.path.normpath(os.path.dirname(original_file_path))
|
||||
lib_name = os.path.splitext(os.path.basename(original_file_path))[0]
|
||||
|
||||
# Collect all matching files
|
||||
found_files = [
|
||||
f
|
||||
for f in os.listdir(lib_dir)
|
||||
if os.path.isfile(os.path.join(lib_dir, f)) and f.startswith(lib_name) and f.endswith("." + new_file_ext)
|
||||
]
|
||||
found_files = sorted(found_files, key=lambda x: os.path.getmtime(os.path.join(lib_dir, x)))
|
||||
|
||||
# Clean up the old files if possible, except for the newest one
|
||||
if found_files:
|
||||
if keep_newest_one:
|
||||
found_files.pop()
|
||||
for f in found_files:
|
||||
try:
|
||||
os.remove(os.path.join(lib_dir, f))
|
||||
except:
|
||||
pass
|
||||
|
||||
# Search for a unblocked file name
|
||||
file_name = ""
|
||||
for s in range(max_files):
|
||||
file_name = "{}_{}.{}".format(os.path.join(lib_dir, lib_name), s, new_file_ext)
|
||||
if not os.path.exists(file_name):
|
||||
break
|
||||
try:
|
||||
with open(file_name, "a") as f:
|
||||
pass
|
||||
except IOError:
|
||||
continue
|
||||
break
|
||||
|
||||
return file_name
|
||||
|
||||
|
||||
# This is necessary to support debugging and Hot-Reload at the same time when building using MSVC
|
||||
def msvc_try_rename_pdb(env, full_lib_path):
|
||||
if not env.get("is_msvc", False):
|
||||
print("Renaming the PDB file will be ignored because of a compiler mismatch.")
|
||||
return
|
||||
if not env["debug_symbols"]:
|
||||
print("Renaming the PDB file will be ignored because debug symbols generation is disabled.")
|
||||
return
|
||||
if not env["use_hot_reload"]:
|
||||
print("Renaming the PDB file will be ignored because Hot-Reload is disabled.")
|
||||
return
|
||||
|
||||
pdb_name = _get_unblocked_file_name(full_lib_path, "pdb")
|
||||
print("New path to the PDB: " + pdb_name)
|
||||
|
||||
# Explicit assignment of the PDB path
|
||||
env.Append(LINKFLAGS=["/PDB:" + pdb_name])
|
Loading…
Reference in New Issue