mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-20 14:53:14 +01:00
LDC does not support -transition yet.
This commit is contained in:
@@ -199,8 +199,12 @@ Usage:\n\
|
||||
-quiet suppress unnecessary messages\n\
|
||||
-release compile release version\n\
|
||||
-run srcfile args... run resulting program, passing args\n\
|
||||
-shared generate shared library\n\
|
||||
-unittest compile in unit tests\n\
|
||||
-shared generate shared library\n"
|
||||
#if 0
|
||||
" -transition=id show additional info about language change identified by 'id'\n\
|
||||
-transition=? list all language changes\n"
|
||||
#endif
|
||||
" -unittest compile in unit tests\n\
|
||||
-v verbose\n\
|
||||
-vdmd print the command used to invoke the underlying compiler\n\
|
||||
-version=level compile in version code >= level\n\
|
||||
@@ -495,6 +499,8 @@ Params parseArgs(size_t originalArgc, char** originalArgv, ls::Path ldcPath)
|
||||
result.targetModel = Model::m64;
|
||||
else if (strcmp(p + 1, "profile") == 0)
|
||||
result.profile = true;
|
||||
else if (memcmp(p + 1, "transition", 10) == 0)
|
||||
warning("-transition not yet supported by LDC.");
|
||||
else if (strcmp(p + 1, "v") == 0)
|
||||
result.verbose = true;
|
||||
else if (strcmp(p + 1, "vdmd") == 0)
|
||||
|
||||
Submodule tests/d2/dmd-testsuite updated: b360450761...2b025b7f2a
Reference in New Issue
Block a user