Hi,

> It seemed that the make process could not find some files. Any Idea what
> those missing file suppose to do. I see the file name is somekind of
> ...ignore. Do we suppose to ignore this file?

The .ignore files instruct the Makefiles not to build certain
subdirectories (adc, i2c, usart) for some PIC16 devices---those that do
not sport the required SFRs/functionality.

Nope, *.ignore cannot be ignored ;-).

Though this is probably caused by switching from bash to sh, the issue
should be fixed in SDCC r4791 (committed Sunday evening).
Makefile.rules was instructing grep to read possibly non-existing files,
had buggy redirection ("&> /dev/null" is interpreted by some shells as
`execute in background and redirect stdout to /dev/null' instead of the
bashish `redirect stdout and stderr to /dev/null'; now changed to
">/dev/null 2>&1"), ...

Regards,
Raphael


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to