changeset 52578:4dd9d5571408

run-tests: remove --compiler option pip has no option like this since one should instead use the standard environment variables (CC and co).
author paugier <pierre.augier@univ-grenoble-alpes.fr>
date Thu, 28 Nov 2024 05:46:16 +0100
parents a62a33ee57da
children 1a0d8556fd00
files tests/run-tests.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/tests/run-tests.py	Thu Dec 12 23:24:00 2024 -0500
+++ b/tests/run-tests.py	Thu Nov 28 05:46:16 2024 +0100
@@ -628,7 +628,6 @@
         action="store_true",
         help="build the hg binary using pyoxidizer",
     )
-    hgconf.add_argument("--compiler", help="compiler to build with")
     hgconf.add_argument(
         '--extra-config-opt',
         action="append",
@@ -3966,9 +3965,6 @@
                 b"build",
             ]
         )
-        if self.options.compiler:
-            cmd.append("--compiler")
-            cmd.append(_sys2bytes(self.options.compiler))
         cmd.extend(
             [
                 b"--build-base=%s" % os.path.join(self._hgtmp, b"build"),