1
0
mirror of https://github.com/cclassic/model-ghdl synced 2025-08-01 15:05:40 +02:00

Extra arguments now work

This commit is contained in:
Makise Kurisu
2015-03-22 11:10:30 +01:00
parent 2fd87d4baf
commit 7df8aa2ccc
2 changed files with 5 additions and 12 deletions

View File

@@ -112,6 +112,7 @@ int main(int argc, char **argv) {
}
else if (GETOPT("-ghdl")) {
ghdlargs = argv[i];
cerr << "GHDARGS=" << argv[i];
}
else if (GETOPT("-gtkwave")) {
wvargs = argv[i];
@@ -121,16 +122,12 @@ int main(int argc, char **argv) {
cerr << "INFO: Unknown command line opt: " << argv[i] << endl;
}
else {
break;
top.append(argv[i]);
top.append(" ");
}
}
}
for (; i < argc; ++i) {
top.append(argv[i]);
top.append(" ");
}
// -gui work.toplevel(RTL)
string temp = "";