parent
d0c670a415
commit
5f1cf31ee0
|
@ -18,8 +18,8 @@ if %githashsize% == 0 (
|
||||||
move /y bin\githash_.txt bin\githash.txt
|
move /y bin\githash_.txt bin\githash.txt
|
||||||
)
|
)
|
||||||
|
|
||||||
set DFLAGS=-O -release -version=StdLoggerDisableWarning -Jbin %MFLAGS%
|
set DFLAGS=-O -release -Jbin %MFLAGS%
|
||||||
set TESTFLAGS=-g -w -version=StdLoggerDisableWarning -Jbin
|
set TESTFLAGS=-g -w -Jbin
|
||||||
set CORE=
|
set CORE=
|
||||||
set LIBDPARSE=
|
set LIBDPARSE=
|
||||||
set STD=
|
set STD=
|
||||||
|
|
3
dub.json
3
dub.json
|
@ -8,8 +8,7 @@
|
||||||
"license" : "BSL-1.0",
|
"license" : "BSL-1.0",
|
||||||
"targetType" : "autodetect",
|
"targetType" : "autodetect",
|
||||||
"versions" : [
|
"versions" : [
|
||||||
"built_with_dub",
|
"built_with_dub"
|
||||||
"StdLoggerDisableWarning"
|
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"libdparse": ">=0.21.1 <0.23.0",
|
"libdparse": ">=0.21.1 <0.23.0",
|
||||||
|
|
9
makefile
9
makefile
|
@ -44,11 +44,14 @@ INCLUDE_PATHS = \
|
||||||
-Ilibddoc/src \
|
-Ilibddoc/src \
|
||||||
-Ilibddoc/common/source
|
-Ilibddoc/common/source
|
||||||
|
|
||||||
DMD_VERSIONS = -version=StdLoggerDisableWarning
|
# e.g. "-version=MyCustomVersion"
|
||||||
|
DMD_VERSIONS =
|
||||||
DMD_DEBUG_VERSIONS = -version=dparse_verbose
|
DMD_DEBUG_VERSIONS = -version=dparse_verbose
|
||||||
LDC_VERSIONS = -d-version=StdLoggerDisableWarning
|
# e.g. "-d-version=MyCustomVersion"
|
||||||
|
LDC_VERSIONS =
|
||||||
LDC_DEBUG_VERSIONS = -d-version=dparse_verbose
|
LDC_DEBUG_VERSIONS = -d-version=dparse_verbose
|
||||||
GDC_VERSIONS = -fversion=StdLoggerDisableWarning
|
# e.g. "-fversion=MyCustomVersion"
|
||||||
|
GDC_VERSIONS =
|
||||||
GDC_DEBUG_VERSIONS = -fversion=dparse_verbose
|
GDC_DEBUG_VERSIONS = -fversion=dparse_verbose
|
||||||
|
|
||||||
DC_FLAGS += -Jbin
|
DC_FLAGS += -Jbin
|
||||||
|
|
|
@ -610,3 +610,21 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a
|
||||||
|
|
||||||
return set;
|
return set;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
version (unittest)
|
||||||
|
{
|
||||||
|
shared static this()
|
||||||
|
{
|
||||||
|
// mute dsymbol warnings in tests
|
||||||
|
static if (__VERSION__ >= 2_101_0)
|
||||||
|
{
|
||||||
|
import std.logger : sharedLog, LogLevel;
|
||||||
|
sharedLog.globalLogLevel = LogLevel.error;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
import std.experimental.logger : globalLogLevel, LogLevel;
|
||||||
|
globalLogLevel = LogLevel.error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -69,6 +69,7 @@ else
|
||||||
string[] importPaths;
|
string[] importPaths;
|
||||||
bool printVersion;
|
bool printVersion;
|
||||||
bool explore;
|
bool explore;
|
||||||
|
bool verbose;
|
||||||
string errorFormat;
|
string errorFormat;
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -100,7 +101,9 @@ else
|
||||||
"muffinButton", &muffin,
|
"muffinButton", &muffin,
|
||||||
"explore", &explore,
|
"explore", &explore,
|
||||||
"skipTests", &skipTests,
|
"skipTests", &skipTests,
|
||||||
"errorFormat|f", &errorFormat);
|
"errorFormat|f", &errorFormat,
|
||||||
|
"verbose|v", &verbose
|
||||||
|
);
|
||||||
//dfmt on
|
//dfmt on
|
||||||
}
|
}
|
||||||
catch (ConvException e)
|
catch (ConvException e)
|
||||||
|
@ -114,6 +117,21 @@ else
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
static if (__VERSION__ >= 2_101_0)
|
||||||
|
import std.logger : sharedLog, LogLevel;
|
||||||
|
else
|
||||||
|
import std.experimental.logger : globalLogLevel, LogLevel;
|
||||||
|
// we don't use std.logger, but dsymbol does, so we surpress all
|
||||||
|
// messages that aren't errors from it by default
|
||||||
|
// users can use verbose to enable all logs (this will log things like
|
||||||
|
// dsymbol couldn't find some modules due to wrong import paths)
|
||||||
|
static if (__VERSION__ >= 2_101_0)
|
||||||
|
sharedLog.globalLogLevel = verbose ? LogLevel.all : LogLevel.error;
|
||||||
|
else
|
||||||
|
globalLogLevel = verbose ? LogLevel.all : LogLevel.error;
|
||||||
|
}
|
||||||
|
|
||||||
if (muffin)
|
if (muffin)
|
||||||
{
|
{
|
||||||
stdout.writeln(` ___________
|
stdout.writeln(` ___________
|
||||||
|
|
Loading…
Reference in New Issue