diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/devtools/automation/variants/plain | 8 | ||||
-rw-r--r-- | js/src/devtools/automation/variants/plaindebug | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/js/src/devtools/automation/variants/plain b/js/src/devtools/automation/variants/plain new file mode 100644 index 0000000000..0c97a5d535 --- /dev/null +++ b/js/src/devtools/automation/variants/plain @@ -0,0 +1,8 @@ +{ + "configure-args": "--enable-rust-simd", + "optimize": true, + "compiler": "gcc", + "env": { + "JSTESTS_EXTRA_ARGS": "--jitflags=jstests" + } +} diff --git a/js/src/devtools/automation/variants/plaindebug b/js/src/devtools/automation/variants/plaindebug new file mode 100644 index 0000000000..0b6271c8c2 --- /dev/null +++ b/js/src/devtools/automation/variants/plaindebug @@ -0,0 +1,10 @@ +{ + "configure-args": "--enable-rust-simd", + "debug": true, + "env": { + "JSTESTS_EXTRA_ARGS": "--jitflags=debug" + }, + "conditional-configure-args": { + "linux64": "--enable-clang-plugin" + } +} |