Add support for ivl debug flags.

This commit is contained in:
Larry Doolittle 2008-01-25 11:16:44 -08:00 committed by Stephen Williams
parent 5ec91ec914
commit 6256dd8040
1 changed files with 4 additions and 1 deletions

View File

@ -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) {
case 'B':
@ -620,6 +620,9 @@ int main(int argc, char **argv)
case 'p':
fprintf(iconfig_file, "flag:%s\n", optarg);
break;
case 'd':
fprintf(iconfig_file, "debug:%s\n", optarg);
break;
case 'g':
rc = process_generation(optarg);