Saturday, July 18, 2009

What to do when SIP does not link with Scilab 4.1.2

If you see the error message below when trying to activate SIP Toolbox in SCILAB...

Do this:

chdir(ImageMagickPath);
link('CORE_RL_magick_.dll');


Then reclick the "Toolboxes" button.

Reference:

http://www.scilab.org/contrib/index_contrib.php?page=displayContribution&fileID=146

2 comments:

Eugenio said...

mam, i found out how to remove the problem permanently.

go to C:\Program Files\scilab-4.1.2\contrib\siptoolbox

then open loader.sce file.

insert the lines

chdir(ImageMagickPath);
link('CORE_RL_magick_.dll');

after the lines


// load the run-time dlls of ImageMagick
ImageMagickPath=libsip_path+'lib\';


and before the lines

link(ImageMagickPath + 'CORE_RL_bzlib_.dll');
link(ImageMagickPath + 'CORE_RL_jbig_.dll');
link(ImageMagickPath + 'CORE_RL_jpeg_.dll');
link(ImageMagickPath + 'CORE_RL_lcms_.dll');

then save. This should fix the problem permanently. :)

beastduck said...

Cool! Works like a charm