build: fixup libcxx zip (#39536)
This commit is contained in:
parent
1eb398b328
commit
9d6d606192
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ def get_object_files(base_path, archive_name):
|
||||||
def main(argv):
|
def main(argv):
|
||||||
dist_zip, = argv
|
dist_zip, = argv
|
||||||
out_dir = os.path.dirname(dist_zip)
|
out_dir = os.path.dirname(dist_zip)
|
||||||
base_path_libcxx = os.path.join(out_dir, 'obj/third_party/libc++')
|
base_path_libcxx = os.path.join(out_dir, 'obj/buildtools/third_party/libc++')
|
||||||
base_path_libcxxabi = os.path.join(out_dir, 'obj/third_party/libc++abi')
|
base_path_libcxxabi = os.path.join(out_dir, 'obj/buildtools/third_party/libc++abi')
|
||||||
object_files_libcxx = get_object_files(base_path_libcxx, 'libc++.a')
|
object_files_libcxx = get_object_files(base_path_libcxx, 'libc++.a')
|
||||||
object_files_libcxxabi = get_object_files(base_path_libcxxabi, 'libc++abi.a')
|
object_files_libcxxabi = get_object_files(base_path_libcxxabi, 'libc++abi.a')
|
||||||
with zipfile.ZipFile(
|
with zipfile.ZipFile(
|
||||||
|
|
Loading…
Reference in a new issue