You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make -C string; make -C alloc; make -C basefunc; make -C json; make -C crypto; make -C struct_mod; make -C memdb; make -C message; make -C dispatch; make -C ex_module; make -C connector; make -C channel; make -C sys_func;
make[1]: Entering directory '/home/shareData/Yu/cube-1.3/cubelib/string'
gcc -g -c -fPIC -Wall -DUSER_MODE memfunc.c
memfunc.c: In function ‘Memcpy’:
memfunc.c:31:20: warning: pointer targets in initialization differ in signedness [-Wpointer-sign]
unsigned char * d=(char *)dest;
^
memfunc.c:32:20: warning: pointer targets in initialization differ in signedness [-Wpointer-sign]
unsigned char * s=(char *)src;
^
我截了部分错误。错误原因是我的gcc版本问题么?
The text was updated successfully, but these errors were encountered:
make -C string; make -C alloc; make -C basefunc; make -C json; make -C crypto; make -C struct_mod; make -C memdb; make -C message; make -C dispatch; make -C ex_module; make -C connector; make -C channel; make -C sys_func;
make[1]: Entering directory '/home/shareData/Yu/cube-1.3/cubelib/string'
gcc -g -c -fPIC -Wall -DUSER_MODE memfunc.c
memfunc.c: In function ‘Memcpy’:
memfunc.c:31:20: warning: pointer targets in initialization differ in signedness [-Wpointer-sign]
unsigned char * d=(char *)dest;
^
memfunc.c:32:20: warning: pointer targets in initialization differ in signedness [-Wpointer-sign]
unsigned char * s=(char *)src;
^
我截了部分错误。错误原因是我的gcc版本问题么?
The text was updated successfully, but these errors were encountered: