aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/cmake/executor.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/mesonbuild/cmake/executor.py b/mesonbuild/cmake/executor.py
index 1271390..4300656 100644
--- a/mesonbuild/cmake/executor.py
+++ b/mesonbuild/cmake/executor.py
@@ -15,20 +15,21 @@
# This class contains the basic functionality needed to run any interpreter
# or an interpreter-based tool.
+import subprocess
+from pathlib import Path
+from typing import List, Tuple, Optional, TYPE_CHECKING
+import re
+import os
+import shutil
+import ctypes
+
from .. import mlog, mesonlib
from ..mesonlib import PerMachine, Popen_safe, version_compare, MachineChoice
from ..environment import Environment
-from pathlib import Path
-from typing import List, Tuple, Optional, TYPE_CHECKING
-
if TYPE_CHECKING:
from ..dependencies.base import ExternalProgram
-import re
-import os
-import shutil
-import ctypes
class CMakeExecutor:
# The class's copy of the CMake path. Avoids having to search for it
@@ -137,8 +138,12 @@ class CMakeExecutor:
def _call_real(self, args: List[str], build_dir: str, env) -> Tuple[int, str, str]:
os.makedirs(build_dir, exist_ok=True)
cmd = self.cmakebin.get_command() + args
- p, out, err = Popen_safe(cmd, env=env, cwd=build_dir)
- rc = p.returncode
+ ret = subprocess.run(cmd, env=env, cwd=build_dir, close_fds=False,
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE,
+ universal_newlines=False)
+ rc = ret.returncode
+ out = ret.stdout.decode(errors='ignore')
+ err = ret.stderr.decode(errors='ignore')
call = ' '.join(cmd)
mlog.debug("Called `{}` in {} -> {}".format(call, build_dir, rc))
return rc, out, err