This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
I'm trying to use SNTP for the AM437x and have created a simple task which simply includes <ti/ndk/nettools//sntp/sntp.h>. The task is empty. However, I receive the following build errors. How do I fix these errors?
socketndk.h appears to attempt to undefine fd_set then define a type for it, which I imagine was intended to fix these issues, but it does not.
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_ZERO':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:129:33: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_ZERO(p) ((p)->count=0)
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:134:5: note: in expansion of macro 'NDK_FD_ZERO'
NDK_FD_ZERO(set);
^~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_CLR':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:123:47: warning: passing argument 1 of 'fdsetRemoveEntry' from incompatible pointer type [-Wincompatible-pointer-types]
#define NDK_FD_CLR(n, p) fdsetRemoveEntry( (p), (n) )
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:145:5: note: in expansion of macro 'NDK_FD_CLR'
NDK_FD_CLR((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:117:21: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern void fdsetRemoveEntry( fd_set *pSet, void *hEntry );
^~~~~~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_ISSET':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:125:45: warning: passing argument 1 of 'fdsetTestEntry' from incompatible pointer type [-Wincompatible-pointer-types]
#define NDK_FD_ISSET(n, p) fdsetTestEntry( (p), (n) )
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:156:13: note: in expansion of macro 'NDK_FD_ISSET'
return (NDK_FD_ISSET((SOCKET)fd, set));
^~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:118:21: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern unsigned int fdsetTestEntry( fd_set *pSet, void *hEntry );
^~~~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_SET':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:36: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:63: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'fd'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:71: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'select':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:27: warning: passing argument 2 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:36: warning: passing argument 3 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:46: warning: passing argument 4 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
gmake: *** [TestTask.o] Error 1
gmake: Target 'all' not remade because of errors.
**** Build Finished ****
Thanks for the response.
Unfortunately, that doesn't seem to change anything. See compile errors below. However, having previously looked at select.h, I agree that it does look like that declaration is the one being used.
'Invoking: GNU Compiler'
"C:/ti/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc.exe" -c -mcpu=cortex-a9 -mtune=cortex-a9 -march=armv7-a -marm -mfloat-abi=hard -Dam4379 -I"C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd" -I"C:/Users/rmay/work/raytheon-ntp-investigation/NTP_Demo" -I"C:/ti/bios_6_52_00_12/packages/gnu/targets/arm/libs/install-native/arm-none-eabi/include/newlib-nano" -g -gdwarf-3 -gstrict-dwarf -Wall -MMD -MP -MF"TestTask.d" -MT"TestTask.d" @"configPkg/compiler.opt" -o"TestTask.o" "../TestTask.c"
subdir_rules.mk:23: recipe for target 'TestTask.o' failed
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_ZERO':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:129:33: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_ZERO(p) ((p)->count=0)
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:134:5: note: in expansion of macro 'NDK_FD_ZERO'
NDK_FD_ZERO(set);
^~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_CLR':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:123:47: warning: passing argument 1 of 'fdsetRemoveEntry' from incompatible pointer type [-Wincompatible-pointer-types]
#define NDK_FD_CLR(n, p) fdsetRemoveEntry( (p), (n) )
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:145:5: note: in expansion of macro 'NDK_FD_CLR'
NDK_FD_CLR((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:117:21: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern void fdsetRemoveEntry( fd_set *pSet, void *hEntry );
^~~~~~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_ISSET':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:125:45: warning: passing argument 1 of 'fdsetTestEntry' from incompatible pointer type [-Wincompatible-pointer-types]
#define NDK_FD_ISSET(n, p) fdsetTestEntry( (p), (n) )
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:156:13: note: in expansion of macro 'NDK_FD_ISSET'
return (NDK_FD_ISSET((SOCKET)fd, set));
^~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:118:21: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern unsigned int fdsetTestEntry( fd_set *pSet, void *hEntry );
^~~~~~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'FD_SET':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:36: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:63: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'fd'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:121:71: error: '_types_fd_set {aka struct _types_fd_set}' has no member named 'count'
#define NDK_FD_SET(n, p) {if((p)->count<NDK_FD_SETSIZE){(p)->fd[(p)->count++]=(n);}}
^
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:167:5: note: in expansion of macro 'NDK_FD_SET'
NDK_FD_SET((SOCKET)fd, set);
^~~~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h: In function 'select':
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:27: warning: passing argument 2 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:36: warning: passing argument 3 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258:0,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:317:46: warning: passing argument 4 of 'fdSelect' from incompatible pointer type [-Wincompatible-pointer-types]
return fdSelect(nfds, readfds, writefds, exceptfds, timeout);
^~~~~~~~~
In file included from C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/sys/socket.h:45:0,
from C:/ti/ndk_2_26_00_08/packages/ti/ndk/nettools/sntp/sntp.h:258,
from ../TestTask.c:38:
C:/ti/ndk_2_26_00_08/packages/ti/ndk/inc/bsd/socketndk.h:340:15: note: expected 'fd_set * {aka struct _fd_set *}' but argument is of type '_types_fd_set * {aka struct _types_fd_set *}'
extern int fdSelect( int width, fd_set *readfds, fd_set *writefds,
^~~~~~~~
gmake: *** [TestTask.o] Error 1
gmake: Target 'all' not remade because of errors.
**** Build Finished ****