Tracking issue for all the ways in which -C compiler flags can alter the ABI #131837
Labels
A-ABI
Area: Concerning the application binary interface (ABI)
A-target-feature
Area: Enabling/disabling target features like AVX, Neon, etc.
C-tracking-issue
Category: A tracking issue for an RFC or an unstable feature.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
If a
-C
flag alters the ABI, mixing crates built with different flags causes UB. This issue is gathering all the ways in which this can happen, so that we can figure out what to do with them. The general goal is to make it impossible to alter these flags without realizing that they are "special" and need to be set consistently across all crates. Ideally rustc can even check that they are set consistently, though that will not cover dynamic linking.-Ctarget-features
can affect the ABI in a bunch of waysextern "C"
ABI of SIMD vector types depends on target features (tracking issue forabi_unsupported_vector_types
future-incompatibility lint) #116558-Ctarget-feature
#116344neon
aarch64 target feature is unsound: it changes the float ABI #131058-Crelocation-model=rwpi
(and possibly others) are unsound due to affecting the ABI #131300-Cllvm-args
can set all sorts of flags, some of which can change the ABIFlags that are sus:
-Cno-redzone
could potentially be a problem-Clink-arg(s)
can also do bad shenanigans... but it can't really affect ABI, can it? The ABI is already baked into the object files at this point.The text was updated successfully, but these errors were encountered: