File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 4
4
build
5
5
.cipd
6
6
.gclient_entries
7
+
8
+ # ignore libs for now
9
+ * .a
Original file line number Diff line number Diff line change 1
1
[submodule "deps/v8 "]
2
2
path = deps/v8
3
3
url = https://chromium.googlesource.com/v8/v8.git
4
- branch = 7.6.303
5
4
[submodule "deps/depot_tools "]
6
5
path = deps/depot_tools
7
6
url = https://chromium.googlesource.com/chromium/tools/depot_tools.git
Original file line number Diff line number Diff line change @@ -88,7 +88,10 @@ def main():
88
88
env = env )
89
89
90
90
lib_fn = os .path .join (build_path , "obj/libv8_monolith.a" )
91
- dest_fn = os .path .join (deps_path , os_arch (), 'libv8.a' )
91
+ dest_path = os .path .join (deps_path , os_arch ())
92
+ if not os .path .exists (dest_path ):
93
+ os .makedirs (dest_path )
94
+ dest_fn = os .path .join (dest_path , 'libv8.a' )
92
95
shutil .copy (lib_fn , dest_fn )
93
96
94
97
Submodule
v8 updated from 2cb2573 to 27646c1
You can’t perform that action at this time.
0 commit comments