Add support for ivl debug flags.
This commit is contained in:
parent
5ec91ec914
commit
6256dd8040
|
|
@ -593,7 +593,7 @@ int main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "B:c:D:Ef:g:hI:M:m:N::o:p:Ss:T:t:vVW:y:Y:")) != EOF) {
|
while ((opt = getopt(argc, argv, "B:c:D:d:Ef:g:hI:M:m:N::o:p:Ss:T:t:vVW:y:Y:")) != EOF) {
|
||||||
|
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'B':
|
case 'B':
|
||||||
|
|
@ -620,6 +620,9 @@ int main(int argc, char **argv)
|
||||||
case 'p':
|
case 'p':
|
||||||
fprintf(iconfig_file, "flag:%s\n", optarg);
|
fprintf(iconfig_file, "flag:%s\n", optarg);
|
||||||
break;
|
break;
|
||||||
|
case 'd':
|
||||||
|
fprintf(iconfig_file, "debug:%s\n", optarg);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'g':
|
case 'g':
|
||||||
rc = process_generation(optarg);
|
rc = process_generation(optarg);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue