Thanks you Holden. Somehow the build worked for the previous RC releases of cobalt 24 , by commenting out crashpad "native_target" dependencies .
Added native target support to toolchain/BUILD.gn , This is causing Boring SSL native build failure..
that error is fixed by setting "asm_target_arch" .
toolchain_args = {
current_os = "linux"
asm_target_arch = "arm"
is_starboard = false
is_native_target_build = true
if(_refsw_arch == "aarch64-linux") {
current_cpu = "arm64"
} else if(_refsw_arch == "arm-linux") {
current_cpu = "arm"
}
is_clang = false
}
But still crahpad_handler error is seen
______
ninja -C out/bt_arm_gold loader_app crashpad_handler
ninja: Entering directory `out/bt-arms_gold'
ninja: error: unknown target 'crashpad_handler'
Thanks,
Sri