We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 262aed0 commit 51be965Copy full SHA for 51be965
Makefile
@@ -35,7 +35,7 @@ GYPFLAGS ?=
35
TESTFLAGS ?=
36
ANDROID_NDK_ROOT ?=
37
ANDROID_TOOLCHAIN ?=
38
-ANDROID_V8 ?= /data/local/v8
+ANDROID_V8 ?= /data/local/tmp/v8
39
NACL_SDK_ROOT ?=
40
41
# Special build flags. Use them like this: "make library=shared"
tools/android-run.py
@@ -88,7 +88,7 @@ def Main():
88
print("Usage: %s <command-to-run-on-device>" % sys.argv[0])
89
return 1
90
workspace = abspath(join(dirname(sys.argv[0]), '..'))
91
- android_workspace = os.getenv("ANDROID_V8", "/data/local/v8")
+ android_workspace = os.getenv("ANDROID_V8", "/data/local/tmp/v8")
92
args = [Escape(arg) for arg in sys.argv[1:]]
93
script = (" ".join(args) + "\n"
94
"case $? in\n"
0 commit comments