aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/abc.cc
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2022-05-27 16:51:16 +0200
committerGitHub <noreply@github.com>2022-05-27 16:51:16 +0200
commit197c9e04e8778f99f82b1b6bddc9eba3fbf85104 (patch)
treede4c512aa6585c989dcd8a551f969bab0483dfee /passes/techmap/abc.cc
parentbf78041e8977effbce3a0928bfa22632222e8bbd (diff)
parent08275a1569af7d925ff28ff0288d9779057d27a9 (diff)
downloadyosys-197c9e04e8778f99f82b1b6bddc9eba3fbf85104.tar.gz
yosys-197c9e04e8778f99f82b1b6bddc9eba3fbf85104.tar.bz2
yosys-197c9e04e8778f99f82b1b6bddc9eba3fbf85104.zip
Merge pull request #3333 from mohamed/feature/tmpdir
Observe $TMPDIR variable when creating tmp files
Diffstat (limited to 'passes/techmap/abc.cc')
-rw-r--r--passes/techmap/abc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc
index ff98a6e36..61ee99ee7 100644
--- a/passes/techmap/abc.cc
+++ b/passes/techmap/abc.cc
@@ -780,7 +780,7 @@ void abc_module(RTLIL::Design *design, RTLIL::Module *current_module, std::strin
if (dff_mode && clk_sig.empty())
log_cmd_error("Clock domain %s not found.\n", clk_str.c_str());
- std::string tempdir_name = "/tmp/" + proc_program_prefix()+ "yosys-abc-XXXXXX";
+ std::string tempdir_name = get_base_tmpdir() + "/" + proc_program_prefix()+ "yosys-abc-XXXXXX";
if (!cleanup)
tempdir_name[0] = tempdir_name[4] = '_';
tempdir_name = make_temp_dir(tempdir_name);