Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev branch build on RasperryPI: ptrdiff_t undefined #233

Closed
CIPop opened this issue Dec 1, 2019 · 4 comments
Closed

Dev branch build on RasperryPI: ptrdiff_t undefined #233

CIPop opened this issue Dec 1, 2019 · 4 comments

Comments

@CIPop
Copy link

CIPop commented Dec 1, 2019

Likely caused by latest check-ins.
Repro from Raspbian Buster.

/home/pi/direwolf/src/dwgpsnmea.c: In function ‘dwgpsnmea_init’:
/home/pi/direwolf/src/dwgpsnmea.c:162:74: error: ‘ptrdiff_t’ undeclared (first use in this function)
    e = pthread_create (&read_gps_tid, NULL, read_gpsnmea_thread, (void*)(ptrdiff_t)s_gpsnmea_port_fd);
                                                                          ^~~~~~~~~
/home/pi/direwolf/src/dwgpsnmea.c:162:74: note: ‘ptrdiff_t’ is defined in header ‘<stddef.h>’; did you forget to ‘#include <stddef.h>’?
/home/pi/direwolf/src/dwgpsnmea.c:62:1:
+#include <stddef.h>
 #include "serial_port.h"
/home/pi/direwolf/src/dwgpsnmea.c:162:74:
    e = pthread_create (&read_gps_tid, NULL, read_gpsnmea_thread, (void*)(ptrdiff_t)s_gpsnmea_port_fd);
                                                                          ^~~~~~~~~
/home/pi/direwolf/src/dwgpsnmea.c:162:74: note: each undeclared identifier is reported only once for each function it appears in
compilation terminated due to -fmax-errors=1.
make[2]: *** [src/CMakeFiles/atest.dir/build.make:232: src/CMakeFiles/atest.dir/dwgpsnmea.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 14%] Building C object src/CMakeFiles/aclients.dir/aclients.c.o
[ 15%] Building C object src/CMakeFiles/decode_aprs.dir/dwgpsnmea.c.o
/home/pi/direwolf/src/aclients.c: In function ‘main’:
/home/pi/direwolf/src/aclients.c:297:76: error: ‘ptrdiff_t’ undeclared (first use in this function)
      e = pthread_create (&client_tid[j], NULL, client_thread_net, (void *)(ptrdiff_t)j);
                                                                            ^~~~~~~~~
/home/pi/direwolf/src/aclients.c:297:76: note: ‘ptrdiff_t’ is defined in header ‘<stddef.h>’; did you forget to ‘#include <stddef.h>’?
/home/pi/direwolf/src/aclients.c:86:1:
+#include <stddef.h>
 
/home/pi/direwolf/src/aclients.c:297:76:
      e = pthread_create (&client_tid[j], NULL, client_thread_net, (void *)(ptrdiff_t)j);
                                                                            ^~~~~~~~~
/home/pi/direwolf/src/aclients.c:297:76: note: each undeclared identifier is reported only once for each function it appears in
compilation terminated due to -fmax-errors=1.
make[2]: *** [src/CMakeFiles/aclients.dir/build.make:63: src/CMakeFiles/aclients.dir/aclients.c.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:610: src/CMakeFiles/aclients.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [CMakeFiles/Makefile2:573: src/CMakeFiles/atest.dir/all] Error 2
[ 15%] Building C object src/CMakeFiles/decode_aprs.dir/dwgps.c.o
[ 16%] Building C object src/CMakeFiles/decode_aprs.dir/dwgpsd.c.o
/home/pi/direwolf/src/dwgpsnmea.c: In function ‘dwgpsnmea_init’:
/home/pi/direwolf/src/dwgpsnmea.c:162:74: error: ‘ptrdiff_t’ undeclared (first use in this function)
    e = pthread_create (&read_gps_tid, NULL, read_gpsnmea_thread, (void*)(ptrdiff_t)s_gpsnmea_port_fd);
                                                                          ^~~~~~~~~
/home/pi/direwolf/src/dwgpsnmea.c:162:74: note: ‘ptrdiff_t’ is defined in header ‘<stddef.h>’; did you forget to ‘#include <stddef.h>’?
/home/pi/direwolf/src/dwgpsnmea.c:62:1:
+#include <stddef.h>
 #include "serial_port.h"
/home/pi/direwolf/src/dwgpsnmea.c:162:74:
    e = pthread_create (&read_gps_tid, NULL, read_gpsnmea_thread, (void*)(ptrdiff_t)s_gpsnmea_port_fd);
                                                                          ^~~~~~~~~
/home/pi/direwolf/src/dwgpsnmea.c:162:74: note: each undeclared identifier is reported only once for each function it appears in
compilation terminated due to -fmax-errors=1.
make[2]: *** [src/CMakeFiles/decode_aprs.dir/build.make:102: src/CMakeFiles/decode_aprs.dir/dwgpsnmea.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 16%] Building C object src/CMakeFiles/decode_aprs.dir/serial_port.c.o
make[1]: *** [CMakeFiles/Makefile2:647: src/CMakeFiles/decode_aprs.dir/all] Error 2
make: *** [Makefile:152: all] Error 2

Workaround:
Adding the following to direwolf.h makes it go away:

#include <stddef.h>
@CIPop CIPop changed the title Dev branch build: ptrdiff_t undefined Dev branch build on RasperryPI: ptrdiff_t undefined Dec 1, 2019
@DwaineGarden
Copy link
Contributor

Confirming I get it on a Intel machine also. Fix resolves the compile error.

@DwaineGarden
Copy link
Contributor

I created a pull request to add #include <stddef.h> to direwolf.h.

@mdomsch
Copy link
Contributor

mdomsch commented Dec 6, 2019

PR #236 resolves this similarly to #235 in that the proper header is included, now everywhere it's actually needed rather than the always-included direwolf.h.

@wb2osz
Copy link
Owner

wb2osz commented Dec 7, 2019

This has been fixed.

@wb2osz wb2osz closed this as completed Dec 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants