Another issue with RTTI is that it facilitates reverse engineering of the program. It's extremely frustrating to see all type names (classes, records), unit names, and even the program name (from the first line of code). There should be an option to limit RTTI to the absolute minimum when it's not used.
I myself am not that great at reverse engineering, but know a lot of people in the field, and while it's true that using binaries with symbol names left in is usually recommended to beginners, e.g. especially platforms like macOS or Android native where default build setups usually leave the symbols in the executable (e.g. Android native apps are build as a dynamic library thats loaded by a Java app, and while it would be possible to just export the symbols required my java, many build environments export all symbols from the native code), it's at most considered a slight hint.
Especially if you consider what information RTTI contains. It does not contain information about the functions called, it doesn't even necessarily contain information about what type is used where. Sure you can find managed types due to their initialization procedures and classes through their constructor but thats it. Additionally names alone don't give you anything
So anyone proficient enough in reverse engineering with RTTI enabled will also get there without RTTI. The advantage someone gets for reverse egnineering your code through RTTI is absolutely minimal.
Yet RTTI is required by the FPC for the core functionality for Object Pascal. Managed types (Strings, Arrays, Variant, Records) require RTTI for their management operations. Composition types (Classes, Records, Objects) require RTTI to manage their managed children (e.g. a record containing a dynamic string itself becomes managed by extension).
So while you gain extremely little advantage by turning off RTTI, changing FPC to a degree that it would support both RTTI enabled and RTTI disabled code, would be a massive challange and workload that basically doubles the maintainance work.
So you are requesting adding a lot of additional work for completely miniscule benefits.