2008-11-11 23:45:07 UTC
I'd like to use some assembly language source files in Eclipse/SDCC - after installing (on WinXP), I tried adding a .asm file, and it complained about not finding the 'as51' command. So I changed this under the project properties to match the name of the assembler provided with SDCC (asx8051), and also added a space after ${OUTPUT_FLAG} in the command line pattern (since the asx8051 seems to want this), and now it executes, but it can't seem to create the output file:
Invoking: SDCC Assembler
asx8051 -o "movex.rel" "../movex.asm"
removing
movex.rel: cannot open.
make: *** [movex.rel] Error 1
make: Target `all' not remade because of errors.
If I run the command from a shell it does the same thing - I noticed that the working directory ('Release') is marked read-only (and if I try to make it writable it magically changes back to read-only????), could this be the problem? If I just run the command in the source directory (removing the ../ from the input file, of course), it works fine.
Can anybody help?
Thanks,
-- Rick