================
@@ -314,5 +317,14 @@ def getStdFlag(cfg, std):
             AddCompileFlag("-D_LIBCPP_REMOVE_TRANSITIVE_INCLUDES"),
         ],
     ),
+    Parameter(
+        name="executor",
+        type=str,
+        default=f"{sys.executable} 
{Path(__file__).resolve().parent.parent.parent / 'run.py'}",
+        help="Custom executor to use instead of the configured default.",
+        actions=lambda executor: [] if not executor else [
----------------
ldionne wrote:

There *has* to be an executor, so I think we should change to

```
actions=lambda executor: [AddSubstitution("%{executor}", executor)]
```

i.e. drop the `if`.

https://github.com/llvm/llvm-project/pull/66545
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to