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

Added tempdir caching for vsim

This commit is contained in:
Makise Kurisu
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";