-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add patch to add missing ppc64 clang target to v8 build control file
- Loading branch information
1 parent
b46f721
commit 1fd5b4f
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn | ||
index 5b7689f9f..9a70034f5 100644 | ||
--- a/build/toolchain/linux/BUILD.gn | ||
+++ b/build/toolchain/linux/BUILD.gn | ||
@@ -57,6 +57,15 @@ gcc_toolchain("arm") { | ||
} | ||
} | ||
|
||
+clang_toolchain("clang_ppc64") { | ||
+ # Output linker map files for binary size analysis. | ||
+ enable_linker_map = true | ||
+ | ||
+ toolchain_args = { | ||
+ current_cpu = "ppc64" | ||
+ current_os = "linux" | ||
+ } | ||
+} | ||
clang_toolchain("clang_x86") { | ||
# Output linker map files for binary size analysis. | ||
enable_linker_map = true |