Thin universal application recursively
0
votes
0
answers
224
views
I'm running on a 2017 macbook pro so I don't need arm64 architecture. I can thin the application manually by going to each executable and library and use
lipo
to extract the x86_64 architecture, but it's very time-consuming for applications with many frameworks/libraries embedded.
Is there a software or a way to thin universal application recursively? It need to:
- identify all files that are executables/libraries and contains both x86_64 and arm64 in the application bundle, and for each file:
- extract the x86_64 part of the file
- replace the original file with the thinned file
- preferably, restore the modified date of the folder containing the file
Note that the two solutions here does not answer my question because Monolingual does not thin frameworks and libraries inside the application bundle and Xslimmer is discontinued.
Asked by Joy Jin
(3043 rep)
Nov 2, 2021, 01:51 PM