| Index: BUILD.gn
|
| diff --git a/BUILD.gn b/BUILD.gn
|
| index c424c4f9984d51942b17f461f36ba9302709a85e..0864390755a4178b22c6ce60a645aa004fd7c25e 100644
|
| --- a/BUILD.gn
|
| +++ b/BUILD.gn
|
| @@ -2181,6 +2181,9 @@ if (current_toolchain == v8_snapshot_toolchain) {
|
| v8_executable("mksnapshot") {
|
| visibility = [ ":*" ] # Only targets in this file can depend on this.
|
|
|
| + # This is executed on the host only and doesn't require PIE.
|
| + want_pie = false
|
| +
|
| sources = [
|
| "src/snapshot/mksnapshot.cc",
|
| ]
|
| @@ -2203,6 +2206,9 @@ v8_executable("mkpeephole") {
|
| # bytecodes that are described in bytecodes.{cc,h}.
|
| visibility = [ ":*" ] # Only targets in this file can depend on this.
|
|
|
| + # This is executed on the host only and doesn't require PIE.
|
| + want_pie = false
|
| +
|
| sources = [
|
| "src/interpreter/bytecode-peephole-optimizer.h",
|
| "src/interpreter/bytecodes.cc",
|
|
|