Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

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

Report an issue
<< demo_choose Demo Tools demo_end >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:38:07 CET 2022