Fix test tail with mjit options for clang provided by Xcode 16

```
clang: error: unknown argument '-emit-pch'; did you mean '-Xclang -emit-pch'?
MJIT warning: Making precompiled header failed on compilation. Stopping MJIT worker...
Successful MJIT finish
```
This commit is contained in:
Hiroshi SHIBATA 2024-11-06 10:55:11 +09:00
parent 19c93a5c8f
commit b57d40d150

View file

@ -870,6 +870,7 @@ make_pch(void)
{ {
const char *rest_args[] = { const char *rest_args[] = {
# ifdef __clang__ # ifdef __clang__
"-Xclang",
"-emit-pch", "-emit-pch",
"-c", "-c",
# endif # endif