PiCW icon indicating copy to clipboard operation
PiCW copied to clipboard

Compile errors on Raspbian buster (armhf) image from 2020-05-27

Open dslotter opened this issue 5 years ago • 1 comments

Attempting to build under Raspbian buster (armhf) image from 2020-05-27 results in these errors:

pi@raspberrypi:~/hamradio/PiCW $ make g++ -c -Wall -lm mailbox.c mailbox.c: In function ‘int mbox_open()’: mailbox.c:256:52: error: ‘makedev’ was not declared in this scope if(mknod(LOCAL_DEVICE_FILE_NAME, S_IFCHR|0600, makedev(MAJOR_NUM_A, 0)) >= 0 && ^~~~~~~ mailbox.c:263:52: error: ‘makedev’ was not declared in this scope if(mknod(LOCAL_DEVICE_FILE_NAME, S_IFCHR|0600, makedev(MAJOR_NUM_B, 0)) >= 0 && ^~~~~~~ make: *** [makefile:9: mailbox.o] Error 1

dslotter avatar Jun 07 '20 15:06 dslotter

Pull request #7 fixed the problem for me @dslotter See pull request comments to get more info on my setup and whether it might be of any use to you.

AntoCuc avatar Aug 12 '20 12:08 AntoCuc