From 0c879101ff12879ef0a9d69e3f22fb864fa94d71 Mon Sep 17 00:00:00 2001 From: Tudor Brindus Date: Sun, 31 Dec 2023 13:42:58 -0500 Subject: [PATCH] . --- dmoj/executors/compiled_executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dmoj/executors/compiled_executor.py b/dmoj/executors/compiled_executor.py index d59a2f1ff..1e655e7a5 100644 --- a/dmoj/executors/compiled_executor.py +++ b/dmoj/executors/compiled_executor.py @@ -133,6 +133,7 @@ def create_compile_process(self, args: List[str]) -> TracedPopen: # so that we can allow it as writeable, rather than of all of /tmp. assert self._dir is not None env['TMPDIR'] = self._dir + print(f'{args=}, {env=}, {self._dir=}, {self.compiler_read_fs=}, {self.compiler_write_fs=}, {self.compiler_required_dirs=}') proc = TracedPopen( [utf8bytes(a) for a in args],