Forrest logo
back to context overview

lipo

List of commands for lipo:

  • lipo:ai:611b7 Command line tool used in macOS to manipulate universal binary files
    $ lipo
    try on your machine
    explain 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 machine
    explain this command
  • lipo:tldr:6a96d lipo: Display detailed information about a universal file.
    $ lipo ${path-to-binary_file} -detailed_info
    try on your machine
    explain 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 machine
    explain this command
  • lipo:tldr:aa4cc lipo: List all architectures contained in a universal file.
    $ lipo ${path-to-binary_file} -archs
    try on your machine
    explain this command
back to context overview