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

@@ -149,16 +149,12 @@ int main(int argc, char **argv)
cerr << "INFO: Unknown command line opt: " << argv[i] << endl;
}
else {
break; // Rest are VHDL input files
vhdl.append(argv[i]);
vhdl.append(" ");
}
}
}
for (; i < argc; ++i) {
vhdl.append(argv[i]);
vhdl.append(" ");
}
#ifdef DEBUG_EN
cout << "\n\nVCOM CALL PARSED:" << endl;
cout << "\twork=" << work << endl;