Skip to content
Snippets Groups Projects
Commit 4834c3c0 authored by Robert Drab's avatar Robert Drab Committed by Andrei Gherzan
Browse files

gn.bbclass: split cflags and toolchain definitions


OpenHarmony build system is causing duplicate definition error when the native
and target toolchain definitions are together with the cflags targets.

Signed-off-by: default avatarrobert.drab <robert.drab@huawei.com>
parent 2104c30d
No related branches found
No related tags found
1 merge request!30flavours/zephyr/local.conf.sample: Bump CONF_VERSION
...@@ -89,9 +89,7 @@ python do_write_gn_toolchain_file () { ...@@ -89,9 +89,7 @@ python do_write_gn_toolchain_file () {
# of places including this class implementation and patchwork for projects # of places including this class implementation and patchwork for projects
# using this class # using this class
toolchain_dir = os.path.join(root_gn_dir, "build", "toolchain", "yocto") toolchain_dir = os.path.join(root_gn_dir, "build", "toolchain", "yocto")
bb.utils.mkdirhier(toolchain_dir) write_toolchain_files(d, toolchain_dir)
toolchain_file = os.path.join(toolchain_dir, "BUILD.gn")
write_toolchain_file(d, toolchain_file)
} }
addtask write_gn_toolchain_file after do_patch before do_configure addtask write_gn_toolchain_file after do_patch before do_configure
...@@ -99,7 +97,7 @@ addtask write_gn_toolchain_file after do_patch before do_configure ...@@ -99,7 +97,7 @@ addtask write_gn_toolchain_file after do_patch before do_configure
do_check_yocto_toolchain_is_used() { do_check_yocto_toolchain_is_used() {
cd "${S}" cd "${S}"
DEFAULT_TARGET_TOOLCHAIN=$(gn desc ${B} "//build/toolchain/yocto:yocto_flags" | \ DEFAULT_TARGET_TOOLCHAIN=$(gn desc ${B} "//build/toolchain/yocto:yocto_flags" | \
grep "toolchain: //build/toolchain/yocto:yocto_target") || true grep "toolchain: //build/toolchain/yocto/target:yocto_target") || true
LIST_OF_GN_TARGETS_USING_YOCTO_FLAGS=$(gn refs -q ${B} \ LIST_OF_GN_TARGETS_USING_YOCTO_FLAGS=$(gn refs -q ${B} \
"//build/toolchain/yocto:yocto_flags") || true "//build/toolchain/yocto:yocto_flags") || true
if test -z "$DEFAULT_TARGET_TOOLCHAIN" || \ if test -z "$DEFAULT_TARGET_TOOLCHAIN" || \
...@@ -228,11 +226,11 @@ def gn_toolchain_flags(d): ...@@ -228,11 +226,11 @@ def gn_toolchain_flags(d):
return str( return str(
'config("yocto_flags") {\n' 'config("yocto_flags") {\n'
' if (current_toolchain == "//build/toolchain/yocto:yocto_target") {\n' ' if (current_toolchain == "//build/toolchain/yocto/target:yocto_target") {\n'
f' cflags = {yocto_target_cflags}\n' f' cflags = {yocto_target_cflags}\n'
f' cflags_cc = {yocto_target_cflags_cc}\n' f' cflags_cc = {yocto_target_cflags_cc}\n'
f' ldflags = {yocto_target_ldflags}\n' f' ldflags = {yocto_target_ldflags}\n'
' } else if (current_toolchain == "//build/toolchain/yocto:yocto_native") {\n' ' } else if (current_toolchain == "//build/toolchain/yocto/native:yocto_native") {\n'
f' cflags = {yocto_native_cflags}\n' f' cflags = {yocto_native_cflags}\n'
f' cflags_cc = {yocto_native_cflags_cc}\n' f' cflags_cc = {yocto_native_cflags_cc}\n'
f' ldflags = {yocto_native_ldflags}\n' f' ldflags = {yocto_native_ldflags}\n'
...@@ -301,11 +299,25 @@ def gn_toolchain_target(d): ...@@ -301,11 +299,25 @@ def gn_toolchain_target(d):
return gn_toolchain(target_toolchain_args) return gn_toolchain(target_toolchain_args)
def write_toolchain_file(d, file_path): def write_toolchain_files(d, toolchain_dir):
"""Creates a complete GN toolchain file in |file_path|.""" """Creates cflags BUILD.gn file, target and native GN toolchain files
in respective subdirectories of the |toolchain_dir_path|."""
with open(file_path, 'w') as toolchain_file: bb.utils.mkdirhier(toolchain_dir)
toolchain_file.write(gn_toolchain_file_header(d)) toolchain_flags_file = os.path.join(toolchain_dir, "BUILD.gn")
with open(toolchain_flags_file, 'w') as toolchain_file:
toolchain_file.write(gn_toolchain_flags(d)) toolchain_file.write(gn_toolchain_flags(d))
toolchain_file.write(gn_toolchain_native(d))
target_toolchain_dir = os.path.join(toolchain_dir, "target")
bb.utils.mkdirhier(target_toolchain_dir)
target_toolchain_file = os.path.join(target_toolchain_dir, "BUILD.gn")
with open(target_toolchain_file, 'w') as toolchain_file:
toolchain_file.write(gn_toolchain_file_header(d))
toolchain_file.write(gn_toolchain_target(d)) toolchain_file.write(gn_toolchain_target(d))
native_toolchain_dir = os.path.join(toolchain_dir, "native")
bb.utils.mkdirhier(native_toolchain_dir)
native_toolchain_file = os.path.join(native_toolchain_dir, "BUILD.gn")
with open(native_toolchain_file, 'w') as toolchain_file:
toolchain_file.write(gn_toolchain_file_header(d))
toolchain_file.write(gn_toolchain_native(d))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment