mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-05 03:36:21 +00:00

[AIX] Add option -X32_64 to the "strip" command The AIX `strip` utility requires option `-X` to specify the object mode. This patch adds the `-X32_64` option to the `strip` command so that it can handle both 32-bit and 64-bit objects. The parameter `option` of function `strip_symbols_with_external_utility`, previously a single string, has been changed to `options`, an array of string slices, to accommodate multiple `strip` options.
Please read the rustc-dev-guide chapter on Backend Agnostic Codegen.