提交 e94e7c2a 编写于 作者: O openharmony_ci 提交者: Gitee

!57 【轻量级 PR】:Add unstripped dir for release.

Merge pull request !57 from jady3356/N/A
...@@ -62,19 +62,18 @@ template("clang_toolchain") { ...@@ -62,19 +62,18 @@ template("clang_toolchain") {
} }
tool("solink") { tool("solink") {
outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}" outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
stripped_outfile = outfile unstripped_outfile = outfile
rspfile = "$outfile.rsp" rspfile = "$outfile.rsp"
rspfile_content = "{{inputs}}" rspfile_content = "{{inputs}}"
command = "" command = ""
if (need_strip) { if (need_strip) {
stripped_outfile = "{{output_dir}}/usr/lib/stripped/{{target_output_name}}{{output_extension}}" unstripped_outfile = "{{output_dir}}/unstripped/usr/lib/{{target_output_name}}{{output_extension}}"
command += "mkdir -p {{output_dir}}/usr/lib/stripped && "
} }
command += "$ld -shared {{ldflags}} {{inputs}} {{libs}} -o $outfile" command += "$ld -shared {{ldflags}} {{inputs}} {{libs}} -o $unstripped_outfile"
if (need_strip) { if (need_strip) {
command += " && $strip \"$outfile\" \"$stripped_outfile\"" command += " && $strip \"$unstripped_outfile\" \"$outfile\""
} }
default_output_extension = ".so" default_output_extension = ".so"
...@@ -82,33 +81,32 @@ template("clang_toolchain") { ...@@ -82,33 +81,32 @@ template("clang_toolchain") {
default_output_dir = "{{root_out_dir}}" default_output_dir = "{{root_out_dir}}"
output_prefix = "lib" output_prefix = "lib"
outputs = [ outfile ] outputs = [ outfile ]
if (stripped_outfile != outfile) { if (unstripped_outfile != outfile) {
outputs += [ stripped_outfile ] outputs += [ unstripped_outfile ]
} }
} }
tool("link") { tool("link") {
outfile = "{{output_dir}}/bin/{{target_output_name}}{{output_extension}}" outfile = "{{output_dir}}/bin/{{target_output_name}}{{output_extension}}"
stripped_outfile = outfile unstripped_outfile = outfile
rspfile = "$outfile.rsp" rspfile = "$outfile.rsp"
custom_ld_flags = " " custom_ld_flags = " "
command = "" command = ""
if (need_strip) { if (need_strip) {
stripped_outfile = "{{output_dir}}/bin/stripped/{{target_output_name}}{{output_extension}}" unstripped_outfile = "{{output_dir}}/unstripped/bin/{{target_output_name}}{{output_extension}}"
command += "mkdir -p {{output_dir}}/bin/stripped && "
} }
command += command +=
"$cc {{ldflags}} {{inputs}} {{libs}} $custom_ld_flags -o $outfile" "$cc {{ldflags}} {{inputs}} {{libs}} $custom_ld_flags -o $unstripped_outfile"
if (need_strip) { if (need_strip) {
command += " && $strip \"$outfile\" \"$stripped_outfile\"" command += " && $strip \"$unstripped_outfile\" \"$outfile\""
} }
description = "LLVM LINK $outfile" description = "LLVM LINK $outfile"
default_output_dir = "{{root_out_dir}}" default_output_dir = "{{root_out_dir}}"
rspfile_content = "{{inputs}}" rspfile_content = "{{inputs}}"
outputs = [ outfile ] outputs = [ outfile ]
if (stripped_outfile != outfile) { if (unstripped_outfile != outfile) {
outputs += [ stripped_outfile ] outputs += [ unstripped_outfile ]
} }
} }
tool("stamp") { tool("stamp") {
......
...@@ -73,25 +73,24 @@ template("gcc_toolchain") { ...@@ -73,25 +73,24 @@ template("gcc_toolchain") {
} }
tool("solink") { tool("solink") {
outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}" outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
stripped_outfile = outfile unstripped_outfile = outfile
rspfile = "$outfile.rsp" rspfile = "$outfile.rsp"
rspfile_content = "{{inputs}}" rspfile_content = "{{inputs}}"
command = "" command = ""
if (need_strip) { if (need_strip) {
stripped_outfile = "{{output_dir}}/usr/lib/stripped/{{target_output_name}}{{output_extension}}" unstripped_outfile = "{{output_dir}}/unstripped/usr/lib/{{target_output_name}}{{output_extension}}"
command += "mkdir -p {{output_dir}}/usr/lib/stripped && "
} }
command += command +=
"$ld -shared {{ldflags}} $extra_ldflags " + "$ld -shared {{ldflags}} $extra_ldflags " +
"-Wl,--start-group {{inputs}} {{libs}} -Wl,--end-group -o $outfile" "-Wl,--start-group {{inputs}} {{libs}} -Wl,--end-group -o $unstripped_outfile"
if (need_strip) { if (need_strip) {
command += " && $strip \"$outfile\" -o \"$stripped_outfile\"" command += " && $strip \"$unstripped_outfile\" -o \"$outfile\""
} }
description = "SOLINK $outfile" description = "SOLINK $outfile"
outputs = [ outfile ] outputs = [ outfile ]
if (stripped_outfile != outfile) { if (unstripped_outfile != outfile) {
outputs += [ stripped_outfile ] outputs += [ unstripped_outfile ]
} }
default_output_dir = "{{root_out_dir}}" default_output_dir = "{{root_out_dir}}"
default_output_extension = ".so" default_output_extension = ".so"
...@@ -99,27 +98,26 @@ template("gcc_toolchain") { ...@@ -99,27 +98,26 @@ template("gcc_toolchain") {
} }
tool("link") { tool("link") {
outfile = "{{output_dir}}/bin/{{target_output_name}}{{output_extension}}" outfile = "{{output_dir}}/bin/{{target_output_name}}{{output_extension}}"
stripped_outfile = outfile unstripped_outfile = outfile
rspfile = "$outfile.rsp" rspfile = "$outfile.rsp"
command = "" command = ""
if (need_strip) { if (need_strip) {
stripped_outfile = "{{output_dir}}/bin/stripped/{{target_output_name}}{{output_extension}}" unstripped_outfile = "{{output_dir}}/unstripped/bin/{{target_output_name}}{{output_extension}}"
command += "mkdir -p {{output_dir}}/bin/stripped && "
} }
command += command +=
"$ld {{ldflags}} $extra_ldflags " + "$ld {{ldflags}} $extra_ldflags " +
"-Wl,--start-group {{inputs}} {{libs}} -Wl,--end-group -o $outfile " "-Wl,--start-group {{inputs}} {{libs}} -Wl,--end-group -o $unstripped_outfile "
if (need_strip) { if (need_strip) {
command += " && $strip \"$outfile\" -o \"$stripped_outfile\"" command += " && $strip \"$unstripped_outfile\" -o \"$outfile\""
} }
description = "LINK $outfile" description = "LINK $outfile"
default_output_dir = "{{root_out_dir}}" default_output_dir = "{{root_out_dir}}"
rspfile_content = "{{inputs}}" rspfile_content = "{{inputs}}"
outputs = [ outfile ] outputs = [ outfile ]
if (stripped_outfile != outfile) { if (unstripped_outfile != outfile) {
outputs += [ stripped_outfile ] outputs += [ unstripped_outfile ]
} }
} }
tool("stamp") { tool("stamp") {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册