Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - 日本語
Справка Scilab >> Demo Tools > demo_compiler

demo_compiler

test the presence of a compiler

Syntax

status = demo_compiler()

Description

The function demo_compiler asks the computer if it owns a compiler C or not. It returns a boolean indicating whether the compiler exists or not.

Examples

select num,
 case 0
  return;
 case 2 then 
  st = demo_compiler(); //The compiler will be used
  if (st==%t) then
    mode(0);
    wheel_build_and_load()
  end
 case 1 then // A precomputed value
  x=read(path+'/x.wrt',8,301);
  wheelg=wheelgs;
  show(x);
end

See Also

Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:48:33 CEST 2016