File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ Options:
81
81
--[no-]native-comp Enable/disable native-comp (default: enabled if supported)
82
82
--[no-]native-march Enable/disable -march=native CFLAG(default: disabled)
83
83
--[no-]native-full-aot Enable/disable NATIVE_FULL_AOT / Ahead of Time compilation (default: disabled)
84
- --[no-]relink-eln-files Enable/disable re-linking shared libraries in bundled *.eln files (default: disabled )
84
+ --[no-]relink-eln-files Enable/disable re-linking shared libraries in bundled *.eln files (default: enabled )
85
85
--[no-]rsvg Enable/disable SVG image support via librsvg (default: enabled)
86
86
--no-titlebar Apply no-titlebar patch (default: disabled)
87
87
--posix-spawn Apply posix-spawn patch (default: disabled)
Original file line number Diff line number Diff line change @@ -1170,7 +1170,7 @@ if __FILE__ == $PROGRAM_NAME
1170
1170
cli_options = {
1171
1171
work_dir : File . expand_path ( __dir__ ) ,
1172
1172
native_full_aot : false ,
1173
- relink_eln : false ,
1173
+ relink_eln : true ,
1174
1174
native_march : false ,
1175
1175
parallel : Etc . nprocessors ,
1176
1176
rsvg : true ,
@@ -1230,7 +1230,7 @@ if __FILE__ == $PROGRAM_NAME
1230
1230
1231
1231
opts . on ( '--[no-]relink-eln-files' ,
1232
1232
'Enable/disable re-linking shared libraries in bundled *.eln ' \
1233
- 'files (default: disabled )' ) do |v |
1233
+ 'files (default: enabled )' ) do |v |
1234
1234
cli_options [ :relink_eln ] = v
1235
1235
end
1236
1236
You can’t perform that action at this time.
0 commit comments