mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
92e60a324f
Windows binaries are always position independent and Clang warns when trying to enable or disable that: ``` ❯ clang hello.c -pie clang: warning: argument unused during compilation: '-pie' [-Wunused-command-line-argument] ❯ clang hello.c -no-pie clang: warning: argument unused during compilation: '-no-pie' [-Wunused-command-line-argument] ```
Please read the rustc-dev-guide chapter on Backend Agnostic Codegen.