Results 4 comments of Peter Tribble

For people finding this, there are a couple of options. You can get good builds of OpenJDK for Solaris on both SPARC and x86 from Liberica https://bell-sw.com/pages/downloads/ These include JDK11,...

This indicates leveldb hasn't been compiled with position-independent code. It'll need to be rebuilt with at least -DCMAKE_POSITION_INDEPENDENT_CODE=on (See the file scripts/install-leveldb.sh in this repo for recommended build flags; you'll...

Using LD_PRELOAD_64 rather than a bare LD_PRELOAD ought to restrict it to 64-bit processes, if you want to pursue that route.

The code correctly detects whether SO_REUSEPORT is available (look for has_SO_REUSEPORT). Unfortunately, at about line 1778 of uvloop/loop.pyx this code, which is where it's failing: if reuse_port: sock.setsockopt(uv.SOL_SOCKET, uv.SO_REUSEPORT, 1)...