[CMake] using arm toolchain and having issues with linux socket can

Gunter, Walter E Walter.Gunter at dematic.com
Fri Sep 16 18:54:25 EDT 2016


Ah..got ya. 
There are two in my toolchain:
Sys/socket.h
Linux/socket.h

I couldn't find AF_CAN or PF_CAN defined in the sys one, but it is in the linux.
I included it, but still getting the error when building that it can't find it.


-----Original Message-----
From: Rolf Eike Beer [mailto:eike at sf-mail.de] 
Sent: Friday, September 16, 2016 4:21 PM
To: cmake at cmake.org
Cc: Gunter, Walter E
Subject: Re: [CMake] using arm toolchain and having issues with linux socket can

Am Freitag, 16. September 2016, 22:13:14 schrieb Gunter, Walter E:
> So, now that I am rocking and rolling using the correct toolchain, I 
> am stuck with a failed compile.
 
> error: 'PF_CAN' was not declared in this scope
> 
> Does this mean it can’t find the header file?  I am just implementing 
> the CAN interface; nothing complex.

If it would not find linux/can.h it would tell you. It does not find the define, which means it actually can include linux/can.h. And this makes sense, as PF_CAN is in indirectly in sys/socket.h, so you should (also) include that.

Eike


More information about the CMake mailing list