-
-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathcli.d
More file actions
1225 lines (1183 loc) · 56.7 KB
/
cli.d
File metadata and controls
1225 lines (1183 loc) · 56.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Defines the help texts for the CLI options offered by DMD.
*
* This file is not shared with other compilers which use the DMD front-end.
* However, this file will be used to generate the
* $(LINK2 https://dlang.org/dmd-linux.html, online documentation) and MAN pages.
*
* Copyright: Copyright (C) 1999-2026 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/compiler/src/dmd/cli.d, _cli.d)
* Documentation: https://dlang.org/phobos/dmd_cli.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/compiler/src/dmd/cli.d
*/
module dmd.cli;
nothrow @safe:
/* The enum TargetOS is an exact copy of the one in dmd.globals.
* Duplicated here because this file is stand-alone.
*/
/// Bit decoding of the TargetOS
enum TargetOS : ubyte
{
/* These are mutually exclusive; one and only one is set.
* Match spelling and casing of corresponding version identifiers
*/
linux = 1,
Windows = 2,
OSX = 4,
OpenBSD = 8,
FreeBSD = 0x10,
Solaris = 0x20,
DragonFlyBSD = 0x40,
// Combination masks
all = linux | Windows | OSX | OpenBSD | FreeBSD | Solaris | DragonFlyBSD,
Posix = linux | OSX | OpenBSD | FreeBSD | Solaris | DragonFlyBSD,
}
// Detect the current TargetOS
version (linux)
{
private enum targetOS = TargetOS.linux;
}
else version(Windows)
{
private enum targetOS = TargetOS.Windows;
}
else version(OSX)
{
private enum targetOS = TargetOS.OSX;
}
else version(OpenBSD)
{
private enum targetOS = TargetOS.OpenBSD;
}
else version(FreeBSD)
{
private enum targetOS = TargetOS.FreeBSD;
}
else version(DragonFlyBSD)
{
private enum targetOS = TargetOS.DragonFlyBSD;
}
else version(Solaris)
{
private enum targetOS = TargetOS.Solaris;
}
else
{
private enum targetOS = TargetOS.all;
}
/**
Checks whether `os` is the current $(LREF TargetOS).
For `TargetOS.all` it will always return true.
Params:
os = $(LREF TargetOS) to check
Returns: true iff `os` contains the current targetOS.
*/
bool isCurrentTargetOS(TargetOS os) @safe
{
return (os & targetOS) > 0;
}
/**
Capitalize a the first character of a ASCII string.
Params:
w = ASCII i string to capitalize
Returns: capitalized string
*/
private string capitalize(string w) @trusted
{
if (w.length && w[0] >= 'a' && w[0] <= 'z')
{
char[] result = new char[] (w.length);
result[0] = cast(char)(w[0] + 'A' - 'a');
result[1 .. $] = w[1 .. $];
w = cast(string) result;
}
return w;
}
/**
Contains all available CLI $(LREF Usage.Option)s.
See_Also: $(LREF Usage.Option)
*/
struct Usage
{
/**
* Representation of a CLI `Option`
*
* The DDoc description `ddoxText` is only available when compiled with `-version=DdocOptions`.
*/
struct Option
{
string flag; /// The CLI flag without leading `-`, e.g. `color`
string helpText; /// A detailed description of the flag
TargetOS os = TargetOS.all; /// For which `TargetOS` the flags are applicable
bool documented = true; // whether this option should be shown in the documentation
// Needs to be version-ed to prevent the text ending up in the binary
// See also: https://issues.dlang.org/show_bug.cgi?id=18238
version(DdocOptions) string ddocText; /// Detailed description of the flag (in Ddoc)
/**
* Params:
* flag = CLI flag without leading `-`, e.g. `color`
* helpText = detailed description of the flag
* os = for which `TargetOS` the flags are applicable
* ddocText = detailed description of the flag (in Ddoc)
* documented = whether this option should be shown in the documentation
*/
this(string flag, string helpText, TargetOS os = TargetOS.all, bool documented = true) @safe
{
this.flag = flag;
this.helpText = helpText;
version(DdocOptions) this.ddocText = helpText;
this.os = os;
this.documented = documented;
}
/// ditto
this(string flag, string helpText, string ddocText, TargetOS os = TargetOS.all, bool documented = true) @safe
{
this.flag = flag;
this.helpText = helpText;
version(DdocOptions) this.ddocText = ddocText;
this.os = os;
this.documented = documented;
}
}
/// Returns all available CLI options
static immutable options = [
Option("allinst",
"generate code for all template instantiations"
),
Option("betterC",
"omit generating some runtime information and helper functions",
"Adjusts the compiler to implement D as a $(LINK2 $(ROOT_DIR)spec/betterc.html, better C):
$(UL
$(LI Predefines `D_BetterC` $(LINK2 $(ROOT_DIR)spec/version.html#predefined-versions, version).)
$(LI $(LINK2 $(ROOT_DIR)spec/expression.html#AssertExpression, Assert Expressions), when they fail,
call the C runtime library assert failure function
rather than a function in the D runtime.)
$(LI $(LINK2 $(ROOT_DIR)spec/arrays.html#bounds, Array overflows)
call the C runtime library assert failure function
rather than a function in the D runtime.)
$(LI $(LINK2 spec/statement.html#final-switch-statement/, Final switch errors)
call the C runtime library assert failure function
rather than a function in the D runtime.)
$(LI Does not automatically link with phobos runtime library.)
$(UNIX
$(LI Does not generate Dwarf `eh_frame` with full unwinding information, i.e. exception tables
are not inserted into `eh_frame`.)
)
$(LI Module constructors and destructors are not generated meaning that
$(LINK2 $(ROOT_DIR)spec/class.html#StaticConstructor, static) and
$(LINK2 $(ROOT_DIR)spec/class.html#SharedStaticConstructor, shared static constructors) and
$(LINK2 $(ROOT_DIR)spec/class.html#StaticDestructor, destructors)
will not get called.)
$(LI `ModuleInfo` is not generated.)
$(LI $(LINK2 $(ROOT_DIR)phobos/object.html#.TypeInfo, `TypeInfo`)
instances will not be generated for structs.)
)",
),
Option("boundscheck=[on|safeonly|off]",
"bounds checks on, in @safe only, or off",
`Controls if bounds checking is enabled.
$(UL
$(LI $(I on): Bounds checks are enabled for all code. This is the default.)
$(LI $(I safeonly): Bounds checks are enabled only in $(D @safe) code.
This is the default for $(SWLINK -release) builds.)
$(LI $(I off): Bounds checks are disabled completely (even in $(D @safe)
code). This option should be used with caution and as a
last resort to improve performance. Confirm turning off
$(D @safe) bounds checks is worthwhile by benchmarking.)
)`
),
Option("c",
"compile only, do not link"
),
Option("check=[assert|bounds|in|invariant|out|switch][=[on|off]]",
"enable or disable specific checks",
q"{Overrides default, `-boundscheck`, `-release` and `-unittest` options to enable or disable specific checks.
$(UL
$(LI $(B assert): assertion checking)
$(LI $(B bounds): array bounds)
$(LI $(B in): in contracts)
$(LI $(B invariant): class/struct invariants)
$(LI $(B out): out contracts)
$(LI $(B switch): $(D final switch) failure checking)
)
$(UL
$(LI $(B on) or not specified: specified check is enabled.)
$(LI $(B off): specified check is disabled.)
)}"
),
Option("check=[h|help|?]",
"list information on all available checks"
),
Option("checkaction=[D|C|halt|context]",
"behavior on assert/boundscheck/finalswitch failure",
`Sets behavior when an assert or an array bounds check fails,
or a $(D final switch) errors.
$(UL
$(LI $(B D): Default behavior, which throws an unrecoverable $(D AssertError).)
$(LI $(B C): Calls the C runtime library assert failure function.)
$(LI $(B halt): Executes a halt instruction, terminating the program.)
$(LI $(B context): Prints the error context as part of the unrecoverable $(D AssertError).)
)`
),
Option("checkaction=[h|help|?]",
"list information on all available check actions"
),
Option("color",
"turn colored console output on"
),
Option("color=[on|off|auto]",
"force colored console output on or off, or only when not redirected (default)",
`Show colored console output. The default depends on terminal capabilities.
$(UL
$(LI $(B auto): use colored output if a tty is detected (default))
$(LI $(B on): always use colored output.)
$(LI $(B off): never use colored output.)
)`
),
Option("conf=<filename>",
"use config file at <filename>"
),
Option("cov",
"perform code coverage and generate `.lst` file",
`Perform $(LINK2 $(ROOT_DIR)code_coverage.html, code coverage analysis) and generate
$(TT .lst) file with report.)
---
dmd -cov -unittest myprog.d
---
`,
),
Option("cov=ctfe", "Include code executed during CTFE in coverage report"),
Option("cov=<nnn>",
"require at least <nnn>% code coverage",
"Perform code coverage analysis, requiring at least <nnn>% code coverage.
Options can be combined, e.g. `-cov=100 -cov=ctfe`."
),
Option("cpp=<filename>",
"use <filename> as the name of the C preprocessor to use for ImportC files",
`Sets the C preprocessor to <filename>.
Normally the C preprocessor used by the associated C compiler is used to
preprocess ImportC files.`
),
Option("D",
"generate documentation",
`$(P Generate $(LINK2 $(ROOT_DIR)spec/ddoc.html, documentation) from source.)
$(P Note: mind the $(LINK2 $(ROOT_DIR)spec/ddoc.html#security, security considerations).)
`,
),
Option("Dd<directory>",
"write documentation file to <directory>",
`Write documentation file to $(I directory) . $(SWLINK -op)
can be used if the original package hierarchy should
be retained`,
),
Option("Df<filename>",
"write documentation file to <filename>"
),
Option("d",
"silently allow deprecated features and symbols",
`Silently allow $(DDLINK deprecate,deprecate,deprecated features) and use of symbols with
$(DDSUBLINK $(ROOT_DIR)spec/attribute, deprecated, deprecated attributes).`,
),
Option("de",
"issue an error when deprecated features or symbols are used (halt compilation)"
),
Option("dw",
"issue a message when deprecated features or symbols are used (default)"
),
Option("debug",
"compile in debug code",
`Compile in $(LINK2 spec/version.html#debug, debug) code`,
),
Option("debug=<ident>",
"compile in debug code identified by <ident>",
`Compile in debug code with $(LINK2 spec/version.html#debug_specification, debug identifier) $(I ident)`,
),
Option("debuglib=<libname>",
"set symbolic debug library to <libname>",
`Link in $(I libname) as the default library when
compiling for symbolic debugging instead of $(B $(LIB)).
If $(I libname) is not supplied, then no default library is linked in.`
),
Option("defaultlib=<libname>",
"set default library to <libname>",
`Link in $(I libname) as the default library when
not compiling for symbolic debugging instead of $(B $(LIB)).
If $(I libname) is not supplied, then no default library is linked in.`,
),
Option("deps",
"print module dependencies (imports/file/version/debug/lib)"
),
Option("deps=<filename>",
"write module dependencies to <filename> (only imports)",
`Write module dependencies as text to $(I filename)
(only imports).`,
),
Option("dllimport=[none|defaultLibsOnly|externalOnly|all]",
"Windows only: select symbols to dllimport",
`Which symbols to dllimport implicitly if not defined in a module that is being compiled
$(UL
$(LI $(I none): None)
$(LI $(I defaultLibsOnly): Only druntime/Phobos symbols and any from a module that is marked as external to binary)
$(LI $(I externalOnly): Only symbols found from a module that is marked as external to binary)
$(LI $(I all): All)
)`,
),
Option("edition[=<NNNN>[<filename>]]",
"set language edition to year <NNNN>, apply to <filename>",
"set edition to default which is 2023, to a particular year $(I NNNN), apply edition only to $(I filename)"
),
Option("extern-std=<standard>",
"set C++ name mangling compatibility with <standard>",
"set C++ name mangling compatibility with <standard>.
Standards supported are:
$(UL
$(LI $(I c++98): Use C++98 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `199711`)
$(LI $(I c++11) (default): Use C++11 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `201103`)
$(LI $(I c++14): Use C++14 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `201402`)
$(LI $(I c++17): Use C++17 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `201703`)
$(LI $(I c++20): Use C++20 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `202002`)
$(LI $(I c++23): Use C++23 name mangling,
Sets `__traits(getTargetInfo, \"cppStd\")` to `202302`)
)",
),
Option("extern-std=[h|help|?]",
"list all supported standards"
),
Option("fIBT",
"generate Indirect Branch Tracking code"
),
Option("fPIC",
"generate position independent code",
cast(TargetOS) (TargetOS.all & ~(TargetOS.Windows | TargetOS.OSX))
),
Option("fPIE",
"generate position independent executables",
cast(TargetOS) (TargetOS.all & ~(TargetOS.Windows | TargetOS.OSX))
),
Option("ftime-trace",
"turn on compile time profiler, generate JSON file with results",
"Measure the time to analyze, call from CTFE, and generate code for a function.
Events with a time longer than 500 microseconds (adjustable with `-ftime-trace-granularity`)
will be recorded.
The profiling result is output in the Chrome Trace Event Format,
$(LINK2 https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/preview, described here).
This can be turned into a more readable text file with the included tool `timetrace2txt`, or inspected
with an interactive viewer such as $(LINK2 https://ui.perfetto.dev/, Perfetto)."
),
Option("ftime-trace-granularity=<μsecs>",
"Minimum time granularity (in microseconds) traced by time profiler (default: 500)",
"Minimum time granularity (in microseconds) traced by time profiler.
The default is `500`.
Measured events shorter than the specified time will be discarded from the output.
Set it too high, and interesting events may not show up in the output.
Set too low, and the profiler overhead will be larger, and the output will be cluttered with tiny events."
),
Option("ftime-trace-file=<filename>",
"specify output file for `-ftime-trace`",
"Specify output file for `-ftime-trace`.
By default, the output name is the same as the first object file name, but with the `.time-trace` extension appended.
A different filename can be chosen with this option, including a path relative to the current directory or an absolute path."
),
Option("g",
"add symbolic debug info",
`$(WINDOWS
Add CodeView symbolic debug info. See
$(LINK2 https://dlang.org/windbg.html, Debugging on Windows).
)
$(UNIX
Add symbolic debug info in DWARF format
for debuggers such as $(D gdb).
)`,
),
Option("gdwarf=<version>",
"add DWARF symbolic debug info (default: 3)",
"Add DWARF symbolic debug info.
The value of <version> may be 3, 4 or 5, defaulting to 3.",
cast(TargetOS) (TargetOS.all & ~cast(uint)TargetOS.Windows)
),
Option("gf",
"emit debug info for all referenced types",
`Emit debug info for all referenced types.
Symbolic debug info is emitted for all types referenced by the compiled code,
even if the definition is in an imported file not currently being compiled.`,
),
Option("gs",
"always emit stack frame"
),
Option("gx",
"add stack stomp code",
`Adds stack stomp code, which overwrites the stack frame memory upon function exit.`,
),
Option("H",
"generate 'header' file",
`Generate $(RELATIVE_LINK2 $(ROOT_DIR)interface-files, D interface file)`,
),
Option("Hd=<directory>",
"write 'header' file to <directory>",
`Write D interface file to $(I directory). $(SWLINK -op)
can be used if the original package hierarchy should
be retained.`,
),
Option("Hf=<filename>",
"write 'header' file to <filename>"
),
Option("HC=[silent|verbose]",
"write C++ 'header' equivalent to stdout",
`write C++ 'header' equivalent to stdout configured with:
$(DL
$(DT silent)$(DD only list extern(C[++]) declarations (default))
$(DT verbose)$(DD also add comments for ignored declarations (e.g. extern(D)))
)`,
),
Option("HC=[?|h|help]",
"list available options for C++ 'header' file generation"
),
Option("HCd=<directory>",
"write C++ 'header' file to <directory>",
"write C++ 'header' file to <directory>, ignored if `-HCf=<filename>` is not present",
),
Option("HCf=<filename>",
"write C++ 'header' file to <filename> instead of stdout"
),
Option("-help",
"print help and exit"
),
Option("I=<directory>",
"look for imports also in <directory>",
q"{$(P Adds $(I directory) to the list of paths to be searched for imports.
Multiple `-I`'s can be used, and the paths are searched in the same order.)
$(P The process of finding a module during the resolution of an import
declaration involves several steps.
$(UL
$(LI $(B Search paths): $(B dmd) searches for the module in all directories
specified with the $(SWLINK -I) option in the following sequence:
$(OL
$(LI From the command line.)
$(LI From the `DFLAGS` setting in the
$(WINDOWS $(RELATIVE_LINK2 sc-ini sc.ini))
$(UNIX $(RELATIVE_LINK2 dmd-conf dmd.conf)) initialization file.)
$(LI From the $(RELATIVE_LINK2 environment DFLAGS) environment variable if
no setting was found in the initialization file.)
$(LI If the module cannot be found in any of the import paths, then the
current working directory is searched instead.)
)
)
$(LI $(B Module name mapping): The chain of identifiers in a
$(LINK2 $(ROOT_DIR)spec/module.html#ModuleFullyQualifiedName, fully qualified)
module name is translated into a corresponding file name. This involves:
$(UL
$(LI Replacing dots (`.`) in the module name with directory separators
($(WINDOWS `\`)$(UNIX `/`)).)
$(LI Appending the appropriate file extension.)
$(LI Look for a package module if the file name is a directory.)
)
)
$(LI $(B File extensions): Modules are matched to files with specific
file extensions. The order in which each extension is searched is as follows:
$(OL
$(LI `.di`)
$(LI `.d`)
$(LI `package.di`)
$(LI `package.d`)
$(LI `.i`)
$(LI `.h`)
$(LI `.c`)
)
)
$(LI $(B Module filename aliases): The relationship between module names and their
corresponding source files can be defined explicitly with the $(SWLINK -mv)
command line option. For example, `-mv=foo=source` or `-mv=foo.bar=source/file.d`.
$(OL
$(LI When an imported module matches a module filename alias, then the
filename spec is used as the source file location. File name extensions are
checked in order if no extension was given in the filename spec.)
$(LI When the package name of an imported module matches a module filename
alias, then the filename spec is used as the search path. No other search
paths are used to locate the module.)
)
)
))}",
),
Option("extI=<directory>",
"look for imports that are out of the currently compiling binary, used to set the module as DllImport"
),
Option("i[=<pattern>]",
"include imported modules in the compilation",
q"{$(P Enables "include imports" mode, where the compiler will include imported
modules in the compilation, as if they were given on the command line. By default, when
this option is enabled, all imported modules are included except those in
druntime/phobos. This behavior can be overridden by providing patterns via `-i=<pattern>`.
A pattern of the form `-i=<package>` is an "inclusive pattern", whereas a pattern
of the form `-i=-<package>` is an "exclusive pattern". Inclusive patterns will include
all module's whose names match the pattern, whereas exclusive patterns will exclude them.
For example. all modules in the package `foo.bar` can be included using `-i=foo.bar` or excluded
using `-i=-foo.bar`. Note that each component of the fully qualified name must match the
pattern completely, so the pattern `foo.bar` would not match a module named `foo.barx`.)
$(P The default behavior of excluding druntime/phobos is accomplished by internally adding a
set of standard exclusions, namely, `-i=-std -i=-core -i=-etc -i=-object`. Note that these
can be overridden with `-i=std -i=core -i=etc -i=object`.)
$(P When a module matches multiple patterns, matches are prioritized by their component length, where
a match with more components takes priority (i.e. pattern `foo.bar.baz` has priority over `foo.bar`).)
$(P By default modules that don't match any pattern will be included. However, if at
least one inclusive pattern is given, then modules not matching any pattern will
be excluded. This behavior can be overridden by usig `-i=.` to include by default or `-i=-.` to
exclude by default.)
$(P Note that multiple `-i=...` options are allowed, each one adds a pattern.)}"
),
Option("identifiers=[UAX31|c99|c11|all]",
"Specify the non-ASCII tables for D identifiers",
`Set the identifier table to use for the non-ASCII values.
$(UL
$(LI $(I UAX31): UAX31)
$(LI $(I c99): C99)
$(LI $(I c11): C11)
$(LI $(I all): All, the least restrictive set, which comes with all others (default))
)`
),
Option("identifiers-importc=[UAX31|c99|c11|all]",
"Specify the non-ASCII tables for ImportC identifiers",
`Set the identifier table to use for the non-ASCII values.
$(UL
$(LI $(I UAX31): UAX31)
$(LI $(I c99): C99)
$(LI $(I c11): C11 (default))
$(LI $(I all): All, the least restrictive set, which comes with all others)
)`
),
Option("ignore",
"deprecated flag, unsupported pragmas are always ignored now"
),
Option("inline",
"do function inlining",
`Inline functions at the discretion of the compiler.
This can improve performance, at the expense of making
it more difficult to use a debugger on it.`,
),
Option("J=<directory>",
"look for string imports also in <directory>",
"Where to look for files for
$(LINK2 $(ROOT_DIR)spec/expression.html#ImportExpression, $(I ImportExpression))s.
This switch is required in order to use $(I ImportExpression)s.
$(I directory) is a `;` separated
list of paths. Multiple $(TT -J)'s can be used, and the paths
are searched in the same order.",
),
Option("L=<linkerflag>",
"pass <linkerflag> to link",
`Pass $(I linkerflag) to the
$(WINDOWS linker $(OPTLINK))
$(UNIX linker), for example, ld`,
),
Option("lib",
"generate library rather than object files",
`Generate library file as output instead of object file(s).
All compiled source files, as well as object files and library
files specified on the command line, are inserted into
the output library.
Compiled source modules may be partitioned into several object
modules to improve granularity.
The name of the library is taken from the name of the first
source module to be compiled. This name can be overridden with
the $(SWLINK -of) switch.`,
),
Option("lowmem",
"enable garbage collection for the compiler",
`Enable the garbage collector for the compiler, reducing the
compiler memory requirements but increasing compile times.`,
),
Option("m32",
"generate 32 bit code",
`$(UNIX Compile a 32 bit executable. This is the default for the 32 bit dmd.)`,
cast(TargetOS) (TargetOS.all & ~cast(uint)TargetOS.DragonFlyBSD) // available on all OS'es except DragonFly, which does not support 32-bit binaries
),
Option("m32mscoff",
"generate 32 bit code and write MS-COFF object files (deprecated use `-m32`)",
TargetOS.Windows
),
Option("m64",
"generate 64 bit code",
`$(UNIX Compile a 64 bit executable. This is the default for the 64 bit dmd.)
$(WINDOWS The generated object code is in MS-COFF and is meant to be used with the
$(LINK2 https://msdn.microsoft.com/en-us/library/dd831853(v=vs.100).aspx, Microsoft Visual Studio 10)
or later compiler.`,
),
Option("main",
"add default main() if not present already (e.g. for unittesting)",
`Add a default $(D main()) function when compiling. This is useful when
unittesting a library, as it enables running the unittests
in a library without having to manually define an entry-point function.`,
),
Option("makedeps[=<filename>]",
"print dependencies in Makefile compatible format to <filename> or stdout.",
`Print dependencies in Makefile compatible format.
If <filename> is omitted, it prints to stdout.
The emitted targets are the compiled artifacts (executable, object files, libraries).
The emitted dependencies are imported modules and imported string files (via $(SWLINK -J) switch).
Special characters in a dependency or target filename are escaped in the GNU Make manner.
`,
),
Option("man",
"open web browser on manual page",
`$(WINDOWS
Open default browser on this page
)
$(LINUX
Open browser specified by the $(B BROWSER)
environment variable on this page. If $(B BROWSER) is
undefined, $(B x-www-browser) is assumed.
)
$(FREEBSD
Open browser specified by the $(B BROWSER)
environment variable on this page. If $(B BROWSER) is
undefined, $(B x-www-browser) is assumed.
)
$(OSX
Open browser specified by the $(B BROWSER)
environment variable on this page. If $(B BROWSER) is
undefined, $(B Safari) is assumed.
)`,
),
Option("map",
"generate linker .map file",
`Generate a $(TT .map) file`,
),
Option("mcpu=[baseline|avx|native]",
"Set the target architecture for code generation",
`Set the target architecture for code generation,
where:
$(DL
$(DT baseline)$(DD the minimum architecture for the target platform (default))
$(DT avx)$(DD
generate $(LINK2 https://en.wikipedia.org/wiki/Advanced_Vector_Extensions, AVX)
instructions instead of $(LINK2 https://en.wikipedia.org/wiki/Streaming_SIMD_Extensions, SSE)
instructions for vector and floating point operations.
Not available for 32 bit memory models other than OSX32.
)
$(DT native)$(DD use the architecture the compiler is running on)
)`,
),
Option("mcpu=[h|help|?]",
"list all architecture options"
),
Option("mixin=<filename>",
"expand and save mixins to file specified by <filename>"
),
Option("mscrtlib=<libname>",
"MS C runtime library to reference from main/WinMain/DllMain",
"If building MS-COFF object files when targeting Windows, embed a reference to
the given C runtime library $(I libname) into the object file containing `main`,
`DllMain` or `WinMain` for automatic linking. The default is $(TT libcmt)
(release version with static linkage), the other usual alternatives are
$(TT libcmtd), $(TT msvcrt) and $(TT msvcrtd).
If no Visual C installation is detected, a wrapper for the redistributable
VC2010 dynamic runtime library and mingw based platform import libraries will
be linked instead using the LLD linker provided by the LLVM project.
The detection can be skipped explicitly if $(TT msvcrt120) is specified as
$(I libname).
If $(I libname) is empty, no C runtime library is automatically linked in.",
TargetOS.Windows,
),
Option("mv=<package.module>=<filespec>",
"use <filespec> as source file for <package.module>",
`Use $(I path/filename) as the source file for $(I package.module).
This is used when the source file path and names are not the same
as the package and module hierarchy.
The rightmost components of the $(I path/filename) and $(I package.module)
can be omitted if they are the same.`,
),
Option("noboundscheck",
"no array bounds checking (deprecated, use `-boundscheck=off`)",
`Turns off all array bounds checking, even for safe functions. $(RED Deprecated
(use $(TT $(SWLINK -boundscheck)=off) instead).)`,
),
Option("nothrow",
"assume no Exceptions will be thrown",
"Turns off generation of exception stack unwinding code, enables
more efficient code for RAII objects. Note: this doesn't change
function mangling, so it is possible to link `-nothrow` code with
code that throws Exceptions, which can result in undefined behavior
without any protection from the type system. Prefer the `nothrow`
function attribute for partial disabling of Exceptions instead,
and only use this flag to globally disable Exceptions.",
),
Option("nothrow-optimizations",
"allow skipping destructors when an Error unwinds through a nothrow function",
`Controls whether $(D finally) blocks are emitted when the try body is $(D nothrow).
By default, finally blocks always run, ensuring cleanup on $(D Error) as well.
With this option, finally blocks are skipped in nothrow try bodies, which may prevent
destructors and scope(exit) blocks (which implicitly generate a try-finally block)
from running when an $(D Error) is thrown.`
),
Option("O",
"optimize",
`Optimize generated code. For fastest executables, compile
with the $(TT $(SWLINK -O) $(SWLINK -release) $(SWLINK -inline) $(SWLINK -boundscheck)=off)
switches together.`,
),
Option("o-",
"do not write object file",
`Suppress generation of object file. Useful in
conjuction with $(SWLINK -D) or $(SWLINK -H) flags.`
),
Option("od=<directory>",
"write object & library files to <directory>",
`Write object files relative to $(I directory)
instead of to the current directory. $(SWLINK -op)
can be used if the original package hierarchy should
be retained`,
),
Option("of=<filename>",
"name output file to <filename>",
`Set output file name to $(I filename) in the output
directory. The output file can be an object file,
executable file, or library file depending on the other
switches.`
),
Option("op",
"preserve source path for output files",
`Preserve source path for output files.
Normally the path for $(B .d) source files is stripped
off when generating an object, interface, or Ddoc file
name.`,
),
Option("oq",
"Write object files with fully qualified file names",
"Write object files with fully qualified file names.
When compiling `pkg/app.d`, the resulting object file name will be `pkg_app.o`
instead of `app.o`. This helps to prevent name conflicts when compiling multiple
packages in the same directory with the $(SWLINK -od) flag.",
),
Option("os=<os>",
"sets target operating system to <os>",
`Set the target operating system as other than the host.
$(UL
$(LI $(I host): Target the host operating system (default).)
$(LI $(I dragonflybsd): DragonFlyBSD)
$(LI $(I freebsd): FreeBSD)
$(LI $(I linux): Linux)
$(LI $(I openbsd): OpenBSD)
$(LI $(I osx): OSX)
$(LI $(I solaris): Solaris)
$(LI $(I windows): Windows)
)`
),
Option("P=<preprocessorflag>",
"pass <preprocessorflag> to C preprocessor",
"Pass $(I preprocessorflag) to
$(WINDOWS `cl.exe`)
$(UNIX `cpp`). See also $(SWLINK -cpp)",
),
Option("preview=<name>",
"enable an upcoming language change identified by <name>",
`Preview an upcoming language change identified by <name>`,
),
Option("preview=[h|help|?]",
"list all upcoming language changes"
),
Option("profile",
"profile runtime performance of generated code",
`Instrument the generated code so that runtime performance data is collected
when the generated program is run.
Upon completion of the generated program, the files $(TT trace.log) and $(TT trace.def)
are generated. $(TT trace.log) has two sections:
$(OL
$(LI Fan in and fan out for each profiled function. The name of the function is left-justified,
the functions immediately preceding it are the other functions that call it (fan in) and how many times
it is called. The functions immediately following are the functions that are called (fan out) and how
many times it calls that function. The function itself has 3 numbers appended: the aggregate of the fan in counts,
the tree time used by the function which is the function time plus the tree times of all the functions it calls,
and the time used excluding
the time used by fan out.
)
$(LI Timing data for each function, sorted from most used to least.)
)
The $(TT trace.def) file contains linker commands to associate functions which are strongly coupled
so they appear adjacent in the resulting executable file.
For more information see $(LINK2 https://www.digitalmars.com/ctg/trace.html, profile).
`,
),
Option("profile=gc",
"profile runtime allocations",
`Instrument calls to GC memory allocation and
write a report to the file $(TT profilegc.log) upon program
termination. $(B Note:) Only instrumented calls will be
logged. These include:
$(UL
$(LI Language constructs that allocate memory)
$(LI Phobos functions that allocate GC memory)
$(LI GC allocations via core.memory.GC)
)
Allocations made by other means will not be logged,
including direct calls to the GC's C API.
`,
),
Option("release",
"contracts and asserts are not emitted, and bounds checking is performed only in @safe functions",
`Compile release version, which means not emitting run-time
checks for contracts and asserts. Array bounds checking is not
done for system and trusted functions, and assertion failures
are undefined behaviour.`
),
Option("revert=<name>",
"revert language change identified by <name>",
`Revert language change identified by <name>`,
),
Option("revert=[h|help|?]",
"list all revertable language changes"
),
Option("run <srcfile> <args>",
"compile, link, and run the program <srcfile>",
`Compile, link, and run the program $(I srcfile) with the
rest of the
command line, $(I args...), as the arguments to the program.
No $(TT .$(OBJEXT)) or executable file is left behind.`
),
Option("shared",
"generate shared library (DLL)",
`$(UNIX Generate shared library)
$(WINDOWS Generate DLL library)`,
),
Option("target=<triple>",
"use <triple> as <arch>-[<vendor>-]<os>[-<cenv>[-<cppenv]]",
"$(I arch) is the architecture: either `x86`, `x64`, `x86_64` or `x32`,
$(I vendor) is always ignored, but supported for easier interoperability,
$(I os) is the operating system, this may have a trailing version number:
`freestanding` for no operating system,
`darwin` or `osx` for MacOS, `dragonfly` or `dragonflybsd` for DragonflyBSD,
`freebsd`, `openbsd`, `linux`, `solaris` or `windows` for their respective operating systems.
$(I cenv) is the C runtime environment and is optional: `musl` for musl-libc,
`msvc` for the MSVC runtime, `bionic` for the Andriod libc, `gnu` or `glibc`
for the GCC C runtime, `newlib` or `uclibc` for their respective C runtimes.
($ I cppenv) is the C++ runtime environment: `clang` for the LLVM C++ runtime,
`gcc` for GCC's C++ runtime, `msvc` for microsoft's MSVC C++ runtime,
`sun` for Sun's C++ runtime.
"
),
Option("transition=<name>",
"help with language change identified by <name>",
`Show additional info about language change identified by <name>`,
),
Option("transition=[h|help|?]",
"list all language changes"
),
Option("unittest",
"compile in unit tests",
`Compile in $(LINK2 spec/unittest.html, unittest) code, turns on asserts, and sets the
$(D unittest) $(LINK2 spec/version.html#PredefinedVersions, version identifier)`,
),
Option("v",
"verbose",
`Enable verbose output for each compiler pass`,
),
Option("vasm",
"list generated assembler for each function"
),
Option("vcolumns",
"print character (column) numbers in diagnostics"
),
Option("verror-style=[digitalmars|gnu|sarif]",
"set the style for file/line number annotations on compiler messages",
`Set the style for file/line number annotations on compiler messages,
where:
$(DL
$(DT digitalmars)$(DD 'file(line[,column]): message'. This is the default.)
$(DT gnu)$(DD 'file:line[:column]: message', conforming to the GNU standard used by gcc and clang.)
$(DT sarif)$(DD 'Generates JSON output conforming to the SARIF (Static Analysis Results Interchange Format) standard, useful for integration with tools like GitHub and other SARIF readers.')
)`,
),
Option("verror-supplements=<num>",
"limit the number of supplemental messages for each error (0 means unlimited)"
),
Option("verrors=<num>",
"limit the number of error/deprecation messages (0 means unlimited)"
),
Option("verrors=[context|simple]",
"set the verbosity of error messages",
`Set the verbosity of error messages:
$(DL
$(DT context)$(DD Show error messages with the context of the erroring source line (including caret).)
$(DT simple)$(DD Show error messages without the context of the erroring source line.)
)`,
),
Option("verrors=spec",
"show errors from speculative compiles such as `__traits(compiles, ...)`"
),
Option("-version",
"print compiler version and exit"
),
Option("version=<ident>",
"compile in version code identified by <ident>",
`Compile in $(LINK2 $(ROOT_DIR)spec/version.html#version, version identifier) $(I ident)`
),
Option("vgc",
"list all GC allocations including hidden ones"
),
Option("visibility=[default|hidden|public]",
"default visibility of symbols",
"$(UL
$(LI $(I default): <hidden> for Windows targets without $(SWLINK -shared), otherwise <public>)
$(LI $(I hidden): Only export symbols marked with `export`)
$(LI $(I public): Export all symbols)
)",
),
Option("vtls",
"list all variables going into thread local storage"
),
Option("vtemplates[=list-instances]",
"list statistics on template instantiations",
`List statistics on template instantiations.
An optional argument determines extra diagnostics:
$(DL
$(DT list-instances)$(DD Also shows all instantiation contexts for each template.)
)`,
),
Option("w",
"warnings as errors (compilation will halt)",
`Enable $(LINK2 $(ROOT_DIR)articles/warnings.html, warnings)`
),
Option("wi",
"warnings as messages (compilation will continue)",
`Enable $(LINK2 $(ROOT_DIR)articles/warnings.html, informational warnings) (i.e. compilation
still proceeds normally)`,
),
Option("wo",
"warnings about use of obsolete features (compilation will continue)",
`Enable warnings about use of obsolete features that may be problematic (compilation
still proceeds normally)`, TargetOS.all, false,
),
Option("X",
"generate JSON file"
),
Option("Xf=<filename>",
"write JSON file to <filename>"
),
Option("Xcc=<driverflag>",
"pass <driverflag> to linker driver (cc)",
"Pass $(I driverflag) to the linker driver (`$CC` or `cc`)",
cast(TargetOS) (TargetOS.all & ~cast(uint)TargetOS.Windows)
),
];
/// Representation of a CLI feature
struct Feature
{
string name; /// name of the feature
string paramName; // internal transition parameter name
string helpText; // detailed description of the feature
string link; // link for more info