Page 1 of 1

Scicos does not produce the Makefile.

Posted: Fri Apr 11, 2008 10:13 am
by francesco
The problem is due to the expired license for the Microchip C30 compiler. You can solve the problem changing in the file compile.sh under your Scilab path (i.e. scilab-4.1.2\\contrib\\dspic\\) and subsitute at line 12:

cat conf_scicos.oil | ${EE_INSTALLDIR}/pic30/pic30-elf/bin/pic30-elf-gcc -c - -E -P > conf.oil

with this new line:

cat conf_scicos.oil | gcc -c - -E -P > conf.oil

In this way the gcc preprocessor is called instead of the pic30-elf-gcc.