2022-06-26 12:00:03 +00:00
|
|
|
import SCons
|
|
|
|
from SCons.Subst import quote_spaces
|
2022-07-14 16:24:26 +00:00
|
|
|
from SCons.Errors import StopError
|
2022-11-02 15:15:40 +00:00
|
|
|
from SCons.Node.FS import _my_normcase
|
2022-06-26 12:00:03 +00:00
|
|
|
|
|
|
|
import re
|
2022-06-30 16:06:12 +00:00
|
|
|
import os
|
2022-11-02 15:15:40 +00:00
|
|
|
|
2022-06-26 12:00:03 +00:00
|
|
|
|
|
|
|
WINPATHSEP_RE = re.compile(r"\\([^\"'\\]|$)")
|
|
|
|
|
|
|
|
|
|
|
|
def tempfile_arg_esc_func(arg):
|
|
|
|
arg = quote_spaces(arg)
|
|
|
|
if SCons.Platform.platform_default() != "win32":
|
|
|
|
return arg
|
|
|
|
# GCC requires double Windows slashes, let's use UNIX separator
|
|
|
|
return WINPATHSEP_RE.sub(r"/\1", arg)
|
|
|
|
|
|
|
|
|
|
|
|
def wrap_tempfile(env, command):
|
|
|
|
env[command] = '${TEMPFILE("' + env[command] + '","$' + command + 'STR")}'
|
2022-06-30 16:06:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
def link_dir(target_path, source_path, is_windows):
|
|
|
|
# print(f"link_dir: {target_path} -> {source_path}")
|
|
|
|
if os.path.lexists(target_path) or os.path.exists(target_path):
|
|
|
|
os.unlink(target_path)
|
|
|
|
if is_windows:
|
|
|
|
# Crete junction
|
|
|
|
import _winapi
|
|
|
|
|
|
|
|
if not os.path.isdir(source_path):
|
2022-07-14 16:24:26 +00:00
|
|
|
raise StopError(f"Source directory {source_path} is not a directory")
|
2022-06-30 16:06:12 +00:00
|
|
|
|
|
|
|
if not os.path.exists(target_path):
|
|
|
|
_winapi.CreateJunction(source_path, target_path)
|
|
|
|
else:
|
|
|
|
os.symlink(source_path, target_path)
|
|
|
|
|
|
|
|
|
2022-07-04 16:53:04 +00:00
|
|
|
def single_quote(arg_list):
|
|
|
|
return " ".join(f"'{arg}'" if " " in arg else str(arg) for arg in arg_list)
|
2022-11-02 15:15:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
def extract_abs_dir_path(node):
|
|
|
|
if isinstance(node, SCons.Node.FS.EntryProxy):
|
|
|
|
node = node.get()
|
|
|
|
|
|
|
|
for repo_dir in node.get_all_rdirs():
|
|
|
|
if os.path.exists(repo_dir.abspath):
|
|
|
|
return repo_dir.abspath
|
|
|
|
|
|
|
|
raise StopError(f"Can't find absolute path for {node.name}")
|