On Wed, 07 Jun 2023 19:47, Yeqi Fu <fufuyqqq...@gmail.com> wrote:
+have_user_native_call = get_option('user_native_call') \ + .require(have_user, error_message: 'user_native_call requires user') \ + .require(targetos == 'linux', error_message: 'user_native_call requires Linux') \ + .allowed()
Is there a check for accepting user_native_call only for supported CPU user targets?
----By the way, a question, would native calls be possible on BSD? I assume if yes it'd be a task for another time.