Error linux 64-bits "plugin RBscript.xojo_plugin:()" is not supported for Linux

Hi everyone! when i want to compile my app for Linux 64 bits, i get this error

“plugin RBscript.xojo_plugin:()” is not supported for Linux

in the next link there is a solution, but i don´t know how to implement it
https://forum.xojo.com/24965-compiler-cannot-find-linux-64-bit-plugins

thanks all

pd: I use windows 10 and xojo 2016 r1

The fix is relatively simple for your particular problem: Remove any references to RBScript from your application. RBScript/XojoScript is currently not 64 bit compatible.

great… it works! thanks a lot

I have a function that test a ping. If i remove the line “Catch e as RbScriptException” the app compiles well, but my function does not work. how do i replace that line?

  dim sh as new Shell
  
  Try
    
    if TargetWin32 then
      sh.Execute ("ping -n 2 " + direccion_ip)  '192.168.1.1")
    end if
    
    if TargetLinux or TargetMacOS then
      sh.Execute ("ping -c 2 " + direccion_ip) '192.168.1.1")
    end if
    
  Catch e as RbScriptException --> RBscript reference
    msgbox("ERROR")
  end try
  
  'app.SleepCurrentThread(2000)
  if sh.ErrorCode = 0 then
    'ping ok
    Return True
  else
    'ping error
    Return False
  end if

You should recall lookup what exceptions the shell throws and not just catch an unrelated one.

[quote=264869:@nicolscanessa]great… it works! thanks a lot

I have a function that test a ping. If i remove the line “Catch e as RbScriptException” the app compiles well, but my function does not work. how do i replace that line?
[/quote]
Remove that catch as it doesn’t do anything anyway