Added tempdir caching for vsim

This commit is contained in:
Markus Koch 2015-01-19 18:08:00 +01:00
parent 70d7449f30
commit 708b7c5e1d
2 changed files with 14 additions and 4 deletions

View File

@ -3,6 +3,7 @@
#include <unistd.h>
#include <stdio.h>
#include <vector>
#include <fstream>
//#include <regex>
//#define DEBUG_EN DEBUG_EN
@ -149,6 +150,13 @@ int main(int argc, char **argv)
return 2;
}
// Write temp path to /tmp
ofstream myfile;
myfile.open ("/tmp/workdir-ghdl");
myfile << tempdir;
myfile.flush();
myfile.close();
string cargs = "ghdl -i --ieee=synopsys --warn-no-vital-generic --workdir=" + string(tempdir) + " --work=" + work + " " + vhdl + " 2>&1";
string sargs = "ghdl -s --ieee=synopsys --warn-no-vital-generic --workdir=" + string(tempdir) + " --work=" + work + " " + vhdl + " 2>&1";

View File

@ -3,6 +3,7 @@
#include <unistd.h>
#include <stdio.h>
#include <vector>
#include <fstream>
#define DEBUG_EN DEBUG_EN
@ -43,10 +44,10 @@ int main(int argc, char **argv) {
int i;
char tempdir[256] = ""; // Compile dir
if (!getcwd(tempdir, sizeof(tempdir))) {
cerr << "Error getting current working dir!" << endl;
return 1;
}
ifstream myfile;
myfile.open ("/tmp/workdir-ghdl");
myfile.getline(tempdir, sizeof(tempdir));
myfile.close();
for (i=1; i < argc; ++i) {
if (ISOPT("-gui")) {
@ -99,6 +100,7 @@ int main(int argc, char **argv) {
}
string cargs = "ghdl -m --ieee=synopsys --warn-no-vital-generic --workdir=" + string(tempdir) + " --work=" + work + " " + top;
if (!run(cargs)) {
cerr << "Error: Compilation failed." << endl;
}