Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Build Lite
提交
f11556cc
B
Build Lite
项目概览
OpenHarmony
/
Build Lite
大约 1 年 前同步成功
通知
22
Star
24
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
B
Build Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f11556cc
编写于
4月 02, 2021
作者:
Y
yangming_ha
提交者:
Gitee
4月 02, 2021
浏览文件
操作
浏览文件
下载
差异文件
!3 IssueNo: #I3ET3S:【生态】support windows host compiling.
Merge pull request !3 from yangming_ha/win
上级
9fa8be84
b9345ad4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
13 deletion
+22
-13
config/BUILDCONFIG.gn
config/BUILDCONFIG.gn
+17
-12
toolchain/gcc.gni
toolchain/gcc.gni
+5
-1
未找到文件。
config/BUILDCONFIG.gn
浏览文件 @
f11556cc
...
@@ -26,6 +26,11 @@ if (ohos_kernel_type == "liteos_m" || ohos_kernel_type == "linux") {
...
@@ -26,6 +26,11 @@ if (ohos_kernel_type == "liteos_m" || ohos_kernel_type == "linux") {
use_board_toolchain = true
use_board_toolchain = true
}
}
toolchain_cmd_suffix = ""
if (host_os == "win") {
toolchain_cmd_suffix = ".exe"
}
# Set current toolchain with to board configuration.
# Set current toolchain with to board configuration.
if (board_toolchain != "" && use_board_toolchain) {
if (board_toolchain != "" && use_board_toolchain) {
ohos_current_toolchain = board_toolchain
ohos_current_toolchain = board_toolchain
...
@@ -40,19 +45,19 @@ if (board_toolchain != "" && use_board_toolchain) {
...
@@ -40,19 +45,19 @@ if (board_toolchain != "" && use_board_toolchain) {
ohos_current_sysroot = board_configed_sysroot
ohos_current_sysroot = board_configed_sysroot
set_default_toolchain("//build/lite/toolchain:${board_toolchain}")
set_default_toolchain("//build/lite/toolchain:${board_toolchain}")
if (board_toolchain_type == "gcc") {
if (board_toolchain_type == "gcc") {
ohos_current_cc_command = "${compile_prefix}gcc"
ohos_current_cc_command = "${compile_prefix}gcc
$toolchain_cmd_suffix
"
ohos_current_cxx_command = "${compile_prefix}g++"
ohos_current_cxx_command = "${compile_prefix}g++
$toolchain_cmd_suffix
"
ohos_current_ar_command = "${compile_prefix}ar"
ohos_current_ar_command = "${compile_prefix}ar
$toolchain_cmd_suffix
"
ohos_current_ld_command = ohos_current_cc_command
ohos_current_ld_command = ohos_current_cc_command
ohos_current_strip_command = "${compile_prefix}strip --strip-unneeded"
ohos_current_strip_command = "${compile_prefix}strip
$toolchain_cmd_suffix
--strip-unneeded"
default_target_configs = [ "//build/lite/config:gcc_opt" ]
default_target_configs = [ "//build/lite/config:gcc_opt" ]
} else if (board_toolchain_type == "clang") {
} else if (board_toolchain_type == "clang") {
ohos_current_cc_command = "${compile_prefix}clang"
ohos_current_cc_command = "${compile_prefix}clang
$toolchain_cmd_suffix
"
ohos_current_cxx_command = "${compile_prefix}clang++"
ohos_current_cxx_command = "${compile_prefix}clang++
$toolchain_cmd_suffix
"
ohos_current_ar_command = "${compile_prefix}llvm-ar"
ohos_current_ar_command = "${compile_prefix}llvm-ar
$toolchain_cmd_suffix
"
ohos_current_as_command = ohos_current_cc_command
ohos_current_as_command = ohos_current_cc_command
ohos_current_ld_command = ohos_current_cc_command
ohos_current_ld_command = ohos_current_cc_command
ohos_current_strip_command = "$compile_prefix/llvm-objcopy --strip-all"
ohos_current_strip_command = "$compile_prefix/llvm-objcopy
$toolchain_cmd_suffix
--strip-all"
default_target_configs = [ "//build/lite/config:clang_opt" ]
default_target_configs = [ "//build/lite/config:clang_opt" ]
}
}
} else {
} else {
...
@@ -62,13 +67,13 @@ if (board_toolchain != "" && use_board_toolchain) {
...
@@ -62,13 +67,13 @@ if (board_toolchain != "" && use_board_toolchain) {
hos_build_compiler = "clang"
hos_build_compiler = "clang"
ohos_clang_toolchain_dir = rebase_path("${ohos_build_compiler_dir}/bin")
ohos_clang_toolchain_dir = rebase_path("${ohos_build_compiler_dir}/bin")
compile_prefix = rebase_path("${ohos_build_compiler_dir}/bin")
compile_prefix = rebase_path("${ohos_build_compiler_dir}/bin")
ohos_current_cc_command = "${compile_prefix}/clang"
ohos_current_cc_command = "${compile_prefix}/clang
$toolchain_cmd_suffix
"
ohos_current_cxx_command = "${compile_prefix}/clang++"
ohos_current_cxx_command = "${compile_prefix}/clang++
$toolchain_cmd_suffix
"
ohos_current_ar_command = "${compile_prefix}/llvm-ar"
ohos_current_ar_command = "${compile_prefix}/llvm-ar
$toolchain_cmd_suffix
"
ohos_current_as_command = ohos_current_cc_command
ohos_current_as_command = ohos_current_cc_command
ohos_current_ld_command = ohos_current_cc_command
ohos_current_ld_command = ohos_current_cc_command
ohos_current_strip_command =
ohos_current_strip_command =
"$ohos_clang_toolchain_dir/llvm-objcopy --strip-all"
"$ohos_clang_toolchain_dir/llvm-objcopy
$toolchain_cmd_suffix
--strip-all"
set_default_toolchain("//build/lite/toolchain:linux_x86_64_ohos_clang")
set_default_toolchain("//build/lite/toolchain:linux_x86_64_ohos_clang")
default_target_configs = [ "//build/lite/config:ohos_clang" ]
default_target_configs = [ "//build/lite/config:ohos_clang" ]
default_target_configs += [ "//build/lite/config:clang_opt" ]
default_target_configs += [ "//build/lite/config:clang_opt" ]
...
...
toolchain/gcc.gni
浏览文件 @
f11556cc
...
@@ -129,7 +129,11 @@ template("gcc_toolchain") {
...
@@ -129,7 +129,11 @@ template("gcc_toolchain") {
description = "STAMP {{output}}"
description = "STAMP {{output}}"
}
}
tool("copy") {
tool("copy") {
command = "cp -afd {{source}} {{output}}"
if (host_os == "win") {
command = "python $ohos_root_path/build/lite/copy_files.py --src_type=file --src={{source}} --dest_dir={{output}}"
} else if (host_os == "linux") {
command = "cp -afd {{source}} {{output}}"
}
description = "COPY {{source}} {{output}}"
description = "COPY {{source}} {{output}}"
}
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录