this is a script I run

function vcPath64 = dlwGet64BitPath() 
    vcPath64 = []; 
    programFilesx86Path = getenv('ProgramFiles(x86)', ''); 
    if (programFilesx86Path <> '') then 
        if isfile(programFilesx86Path + '\Microsoft Visual Studio
10.0\VC\bin\amd64\cl.exe') then 
            vcPath64 = programFilesx86Path + '\Microsoft Visual Studio
10.0'; 
        end 
    end 
endfunction 

MSVCBIN64PATH = dlwGet64BitPath() + filesep() + 'VC\bin\amd64' 

 I run it from console

-->exec('C:\Users\peter.balazovic\Downloads\test\cc.sci', -1)

BTW
I do not have a directory "Microsoft Visual Studio 10.0\VC\bin\amd64\"





--
View this message in context: 
http://mailinglists.scilab.org/C-compiler-tp4025856p4025862.html
Sent from the Scilab users - Mailing Lists Archives mailing list archive at 
Nabble.com.
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to