partially revert c023c217a5
The `toolchain/private/cc_toolchains.bzl` changes were added by accident.
This commit is contained in:
parent
026d234bc2
commit
9dbba15064
@ -19,9 +19,9 @@ def declare_cc_toolchains(os, absolute_path, zig_include_root):
|
|||||||
cxx_builtin_include_directories = []
|
cxx_builtin_include_directories = []
|
||||||
for d in DEFAULT_INCLUDE_DIRECTORIES + target_config.includes:
|
for d in DEFAULT_INCLUDE_DIRECTORIES + target_config.includes:
|
||||||
d = zig_include_root + d
|
d = zig_include_root + d
|
||||||
cxx_builtin_include_directories.append(d)
|
cxx_builtin_include_directories.append(absolute_path + "/" + d)
|
||||||
for d in getattr(target_config, "toplevel_include", []):
|
for d in getattr(target_config, "toplevel_include", []):
|
||||||
cxx_builtin_include_directories.append(d)
|
cxx_builtin_include_directories.append(absolute_path + "/" + d)
|
||||||
|
|
||||||
absolute_tool_paths = {}
|
absolute_tool_paths = {}
|
||||||
for name, path in target_config.tool_paths.items() + DEFAULT_TOOL_PATHS:
|
for name, path in target_config.tool_paths.items() + DEFAULT_TOOL_PATHS:
|
||||||
@ -29,7 +29,7 @@ def declare_cc_toolchains(os, absolute_path, zig_include_root):
|
|||||||
absolute_tool_paths[name] = path
|
absolute_tool_paths[name] = path
|
||||||
continue
|
continue
|
||||||
tool_path = zig_tool_path(os).format(zig_tool = path)
|
tool_path = zig_tool_path(os).format(zig_tool = path)
|
||||||
absolute_tool_paths[name] = tool_path
|
absolute_tool_paths[name] = "%s/%s" % (absolute_path, tool_path)
|
||||||
|
|
||||||
linkopts = target_config.linkopts
|
linkopts = target_config.linkopts
|
||||||
dynamic_library_linkopts = target_config.dynamic_library_linkopts
|
dynamic_library_linkopts = target_config.dynamic_library_linkopts
|
||||||
@ -37,7 +37,7 @@ def declare_cc_toolchains(os, absolute_path, zig_include_root):
|
|||||||
for s in getattr(target_config, "linker_version_scripts", []):
|
for s in getattr(target_config, "linker_version_scripts", []):
|
||||||
linkopts = linkopts + ["-Wl,--version-script,%s/%s" % (absolute_path, s)]
|
linkopts = linkopts + ["-Wl,--version-script,%s/%s" % (absolute_path, s)]
|
||||||
for incl in getattr(target_config, "compiler_extra_includes", []):
|
for incl in getattr(target_config, "compiler_extra_includes", []):
|
||||||
copts = copts + ["-include", incl]
|
copts = copts + ["-include", absolute_path + "/" + incl]
|
||||||
|
|
||||||
zig_cc_toolchain_config(
|
zig_cc_toolchain_config(
|
||||||
name = zigtarget + "_cc_config",
|
name = zigtarget + "_cc_config",
|
||||||
|
Loading…
Reference in New Issue
Block a user