Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
9408941c
Commit
9408941c
authored
Aug 22, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 706236 - Confusing use of GENERATE_TAGFILE
parent
44013ca5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
config.h
src/config.h
+1
-0
config.l
src/config.l
+14
-1
No files found.
src/config.h
View file @
9408941c
...
...
@@ -543,6 +543,7 @@ class Config
}
private
:
void
checkFileName
(
const
char
*
);
QList
<
ConfigOption
>
*
m_options
;
QList
<
ConfigOption
>
*
m_obsolete
;
QList
<
ConfigOption
>
*
m_disabled
;
...
...
src/config.l
View file @
9408941c
...
...
@@ -285,7 +285,7 @@ bool &Config::getBool(const char *fileName,int num,const char *name) const
}
else if (opt->kind()!=ConfigOption::O_Bool)
{
config_err("%s<%d>: Internal error: Requested option %s not of
integer
type!\n",fileName,num,name);
config_err("%s<%d>: Internal error: Requested option %s not of
boolean
type!\n",fileName,num,name);
exit(1);
}
return *((ConfigBool *)opt)->valueRef();
...
...
@@ -1045,6 +1045,18 @@ static void cleanUpPaths(QStrList &str)
}
}
void Config::checkFileName(const char *optionName)
{
QCString &s = Config_getString(optionName);
QCString val = s.stripWhiteSpace().lower();
if ((val=="yes" || val=="true" || val=="1" || val=="all") ||
(val=="no" || val=="false" || val=="0" || val=="none"))
{
config_err("Error: file name expected for option %s, got %s instead. Ignoring...\n",optionName,s.data());
s=""; // note tihe use of &s above: this will change the option value!
}
}
void Config::check()
{
//if (!projectName.isEmpty())
...
...
@@ -1536,6 +1548,7 @@ void Config::check()
Config_getBool("EXTRACT_PACKAGE") = TRUE;
}
checkFileName("GENERATE_TAGFILE");
}
void Config::init()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment