Browse Source

build: fixup libcxx zip (#39536)

John Kleinschmidt 1 year ago
parent
commit
9d6d606192
1 changed files with 2 additions and 2 deletions
  1. 2 2
      build/zip_libcxx.py

+ 2 - 2
build/zip_libcxx.py

@@ -30,8 +30,8 @@ def get_object_files(base_path, archive_name):
 def main(argv):
   dist_zip, = argv
   out_dir = os.path.dirname(dist_zip)
-  base_path_libcxx = os.path.join(out_dir, 'obj/third_party/libc++')
-  base_path_libcxxabi = os.path.join(out_dir, 'obj/third_party/libc++abi')
+  base_path_libcxx = os.path.join(out_dir, 'obj/buildtools/third_party/libc++')
+  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_libcxxabi = get_object_files(base_path_libcxxabi, 'libc++abi.a')
   with zipfile.ZipFile(