Hi all,
I found a small bug. I'm not sure if it is specific to Carbide.c++, but that is what I am using.
The epocaifdef.pl file in Carbide\plugins\com.symbian.cdt.sdk_1.0.0\scripts does not pass the -t flag to epocaif.pl correctly. This causes problems in environents where the default temp directory (in this case, the root of the C:\ drive) is not writable by the user.
For instance, my user account, which runs with restricted privileges, cannot create files directly under C:\ so the 'Invoking: AIF Compiler' phase would fail. I tried putting -tTemp in the General Options of the AIF Compiler (in the Properties window), but it had no effect.
To fix, change line 201:
Code:
my $aifCommand = "perl -S epocaif.pl -o$opt_o $opt_I $rssSrcFile ";
to
Code:
my $aifCommand = "perl -S epocaif.pl -t$tmpdir -o$opt_o $opt_I $rssSrcFile ";
and add after line 46:
Now you should be able to specify whatever temp directory you want - hopefully something writable ;-)