@@ -1534,6 +1534,8 @@ options! {
15341534 relocation_model: Option <RelocModel > = ( None , parse_relocation_model, [ TRACKED ] ,
15351535 "control generation of position-independent code (PIC) \
15361536 (`rustc --print relocation-models` for details)") ,
1537+ relro_level: Option <RelroLevel > = ( None , parse_relro_level, [ TRACKED ] ,
1538+ "choose which RELRO level to use" ) ,
15371539 remark: Passes = ( Passes :: Some ( Vec :: new( ) ) , parse_passes, [ UNTRACKED ] ,
15381540 "output remarks for these optimization passes (space separated, or \" all\" )" ) ,
15391541 rpath: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -1881,8 +1883,6 @@ options! {
18811883 "randomize the layout of types (default: no)" ) ,
18821884 relax_elf_relocations: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
18831885 "whether ELF relocations can be relaxed" ) ,
1884- relro_level: Option <RelroLevel > = ( None , parse_relro_level, [ TRACKED ] ,
1885- "choose which RELRO level to use" ) ,
18861886 remap_cwd_prefix: Option <PathBuf > = ( None , parse_opt_pathbuf, [ TRACKED ] ,
18871887 "remap paths under the current working directory to this path prefix" ) ,
18881888 remap_path_scope: RemapPathScopeComponents = ( RemapPathScopeComponents :: all( ) , parse_remap_path_scope, [ TRACKED ] ,
0 commit comments