Skip to content

Commit

Permalink
Fix universal2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Feb 28, 2024
1 parent 751e988 commit 281c262
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/get_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ def main():
lipo_dir_merge_dst = conan_output_x64
else:
raise RuntimeError("Invalid arch: " + arch)

lipo_dir_merge_result = lipo_dir_merge_src.replace("armv8", "universal2")
lipo_dir_merge_result = conan_output_arm.replace("armv8", "universal2")
shutil.rmtree(lipo_dir_merge_result, ignore_errors=True)

subprocess.run(
[
"python3",
Expand Down

0 comments on commit 281c262

Please sign in to comment.