Skip to content

Commit c87bdbc

Browse files
mi-acCommit Bot
authored andcommitted
[gcmole] Fix gcmole after property change
The build location is now universally in out/build after infra change: https://crrev.com/c/2426643 [email protected] Bug: chromium:1132088 Change-Id: I0d8867ed58adec79ed66f5e4dac375827e2679e3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2448451 Reviewed-by: Michael Achenbach <[email protected]> Commit-Queue: Michael Achenbach <[email protected]> Cr-Commit-Position: refs/heads/master@{#70296}
1 parent c4d2ef3 commit c87bdbc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tools/gcmole/gcmole.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ local function MakeClangCommandLine(
115115
.. " -DV8_INTL_SUPPORT"
116116
.. " -I./"
117117
.. " -Iinclude/"
118-
.. " -Iout/Release/gen"
118+
.. " -Iout/build/gen"
119119
.. " -Ithird_party/icu/source/common"
120120
.. " -Ithird_party/icu/source/i18n"
121121
.. " " .. arch_options

tools/gcmole/run-gcmole.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121

2222
assert len(sys.argv) == 2
2323

24-
if not os.path.isfile("out/Release/gen/torque-generated/builtin-definitions.h"):
25-
print("Expected generated headers in out/Release/gen.")
26-
print("Either build v8 in out/Release or change gcmole.lua:115")
24+
if not os.path.isfile("out/build/gen/torque-generated/builtin-definitions.h"):
25+
print("Expected generated headers in out/build/gen.")
26+
print("Either build v8 in out/build or change gcmole.lua:115")
2727
sys.exit(-1)
2828

2929
proc = subprocess.Popen(

0 commit comments

Comments
 (0)