
lipo
List of commands for lipo:
-
lipo:ai:611b7 Command line tool used in macOS to manipulate universal binary files$ lipotry on your machineexplain this command
-
lipo:tldr:5258b lipo: Create a universal file from two single-architecture files.$ lipo ${path-to-binary_file-x86_64} ${path-to-binary_file-arm64e} -create -output ${path-to-binary_file}try on your machineexplain this command
-
lipo:tldr:6a96d lipo: Display detailed information about a universal file.$ lipo ${path-to-binary_file} -detailed_infotry on your machineexplain this command
-
lipo:tldr:73d32 lipo: Extract a single-architecture file from a universal file.$ lipo ${path-to-binary_file} -thin ${arm64e} -output ${path-to-binary_file-arm64e}try on your machineexplain this command
-
lipo:tldr:aa4cc lipo: List all architectures contained in a universal file.$ lipo ${path-to-binary_file} -archstry on your machineexplain this command