File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,8 @@ compiler = meson.get_compiler('d')
1010
1111message (' Using compiler ' + compiler.get_id())
1212
13- if compiler.get_id() == ' gcc'
14- error (' Tilix can not be compiled with GDC at time, since the standard library version of all GDC versions is currently (2016) too old. Sorry.' )
15- endif
16-
17- if compiler.get_id() == ' llvm'
18- extra_args = [' -vcolumns' ,' -d-version=StdLoggerDisableTrace' ]
13+ if compiler.get_id() == ' llvm'
14+ extra_args = [' -vcolumns' ]
1915 d_link_args = []
2016else
2117 extra_args = []
@@ -119,6 +115,7 @@ executable('tilix',
119115 xlib_dep,
120116 libunwind_dep],
121117 d_args : extra_args,
118+ d_module_versions : [' StdLoggerDisableTrace' ],
122119 link_args : d_link_args,
123120 install : true
124121)
You can’t perform that action at this time.
0 commit comments