JamesP6000 / PiCW

Raspberry Pi CW Transmitter
GNU General Public License v2.0
55 stars 13 forks source link

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

Open dslotter opened 4 years ago

dslotter commented 4 years ago

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

AntoCuc commented 3 years ago

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.