Skip to content

Commit cb26917

Browse files
committed
Drop Solaris support for MJIT
I tried to debug: http://rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20220905T070005Z.fail.html.gz but I don't have sudo privilege to install dependencies such as xz on that machine. Thus I can't extract a prebuilt libclang binary. Anyway, if we find out ABI is different from x86_64 / aarch64, we'd like to have sparc CI associated to GitHub to run `make mjit-bindgen`, but we can't. Supporting this could be too hard, so I'm leaving it for now.
1 parent 06eb9af commit cb26917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3744,7 +3744,7 @@ AC_ARG_ENABLE(jit-support,
37443744
AS_HELP_STRING([--disable-jit-support], [disable JIT features]),
37453745
[MJIT_SUPPORT=$enableval],
37463746
[AS_CASE(["$target_os"],
3747-
[wasi | mingw*], [MJIT_SUPPORT=no],
3747+
[wasi | mingw* | solaris*], [MJIT_SUPPORT=no],
37483748
[MJIT_SUPPORT=yes]
37493749
)])
37503750

0 commit comments

Comments
 (0)