Files
rust/compiler/rustc_codegen_ssa
Mateusz Mikuła 92e60a324f Do no add -no-pie on Windows
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]
```
2026-02-18 11:24:13 +01:00
..
2026-02-18 11:24:13 +01:00