Skip to content

Commit

Permalink
Fixes llvm-ar path.
Browse files Browse the repository at this point in the history
  • Loading branch information
tommie committed Dec 27, 2023
1 parent c712943 commit 39793c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def convert_to_thin_ar(src_fn, dest_fn, dest_obj_dn):
"""
dest_path = os.path.dirname(dest_fn)

ar_path = "third_party/llvm-build/Release+Asserts/bin/llvm-ar"
ar_path = os.path.abspath(os.path.join(v8_path, "third_party/llvm-build/Release+Asserts/bin/llvm-ar"))
if args.os == "linux" and args.arch == "arm64" and not is_clang:
ar_path = "aarch64-linux-gnu-ar"
elif not os.access(ar_path, os.X_OK):
Expand Down

0 comments on commit 39793c9

Please sign in to comment.