mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
Meta: Do not launch linker commands with ccache
This commit is contained in:
parent
017009437d
commit
847ee6e266
Notes:
sideshowbarker
2024-07-17 06:28:38 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/847ee6e266 Pull-request: https://github.com/SerenityOS/serenity/pull/24528 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 0 additions and 9 deletions
|
@ -65,9 +65,6 @@ template("unix_toolchain") {
|
|||
}
|
||||
|
||||
tool("alink") {
|
||||
if (enable_ccache) {
|
||||
command_launcher = "ccache"
|
||||
}
|
||||
if (current_os == "ios" || current_os == "mac") {
|
||||
command = "libtool -D -static -no_warning_for_no_symbols {{arflags}} -o {{output}} {{inputs}}"
|
||||
not_needed([ "ar" ])
|
||||
|
@ -93,9 +90,6 @@ template("unix_toolchain") {
|
|||
lib_dir_switch = "-L"
|
||||
|
||||
tool("solink") {
|
||||
if (enable_ccache) {
|
||||
command_launcher = "ccache"
|
||||
}
|
||||
outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
|
||||
if (current_os == "ios" || current_os == "mac") {
|
||||
command = "$ld -shared {{ldflags}} -o $outfile {{inputs}} {{libs}} {{frameworks}} -Wl,-install_name,@rpath/{{target_output_name}}{{output_extension}}"
|
||||
|
@ -116,9 +110,6 @@ template("unix_toolchain") {
|
|||
}
|
||||
|
||||
tool("solink_module") {
|
||||
if (enable_ccache) {
|
||||
command_launcher = "ccache"
|
||||
}
|
||||
outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
|
||||
if (current_os == "ios" || current_os == "mac") {
|
||||
command = "$ld -shared {{ldflags}} -Wl,-flat_namespace -Wl,-undefined,suppress -o $outfile {{inputs}} {{libs}} {{frameworks}} -Wl,-install_name,@rpath/{{target_output_name}}{{output_extension}}"
|
||||
|
|
Loading…
Add table
Reference in a new issue