See <https://builds.apache.org/job/NuttX-Nightly-Build/46/display/redirect>

Changes:


------------------------------------------
[...truncated 1.28 MB...]
telnetc.c:2210:6: error: conflicting types for 'telnet_begin_newenviron'
 void telnet_begin_newenviron(FAR struct telnet_s **telnet, unsigned char cmd)
      ^~~~~~~~~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:669:6:
 note: previous declaration of 'telnet_begin_newenviron' was here
 void telnet_begin_newenviron(struct telnet_s *telnet, unsigned char type);
      ^~~~~~~~~~~~~~~~~~~~~~~
telnetc.c:2233:6: error: conflicting types for 'telnet_newenviron_value'
 void telnet_newenviron_value(FAR struct telnet_s **telnet, unsigned char type,
      ^~~~~~~~~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:688:6:
 note: previous declaration of 'telnet_newenviron_value' was here
 void telnet_newenviron_value(struct telnet_s *telnet, unsigned char type,
      ^~~~~~~~~~~~~~~~~~~~~~~
telnetc.c:2256:6: error: conflicting types for 'telnet_ttype_send'
 void telnet_ttype_send(FAR struct telnet_s **telnet)
      ^~~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:718:6:
 note: previous declaration of 'telnet_ttype_send' was here
 void telnet_ttype_send(struct telnet_s * telnet);
      ^~~~~~~~~~~~~~~~~
telnetc.c:2303:6: error: conflicting types for 'telnet_ttype_is'
 void telnet_ttype_is(FAR struct telnet_s **telnet, FAR const char *ttype)
      ^~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:756:6:
 note: previous declaration of 'telnet_ttype_is' was here
 void telnet_ttype_is(struct telnet_s * telnet, const char *ttype);
      ^~~~~~~~~~~~~~~
telnetc.c:2333:6: error: conflicting types for 'telnet_send_zmp'
 void telnet_send_zmp(FAR struct telnet_s **telnet, size_t argc,
      ^~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:771:6:
 note: previous declaration of 'telnet_send_zmp' was here
 void telnet_send_zmp(struct telnet_s * telnet, size_t argc,
      ^~~~~~~~~~~~~~~
telnetc.c: In function 'telnet_send_zmp':
telnetc.c:2340:20: warning: passing argument 1 of 'telnet_begin_zmp' from 
incompatible pointer type [-Wincompatible-pointer-types]
   telnet_begin_zmp(telnet, argv[0]);
                    ^~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:814:6:
 note: expected 'struct telnet_s *' but argument is of type 'struct telnet_s **'
 void telnet_begin_zmp(struct telnet_s * telnet, const char *cmd);
      ^~~~~~~~~~~~~~~~
telnetc.c:2346:22: warning: passing argument 1 of 'telnet_zmp_arg' from 
incompatible pointer type [-Wincompatible-pointer-types]
       telnet_zmp_arg(telnet, argv[i]);
                      ^~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:828:6:
 note: expected 'struct telnet_s *' but argument is of type 'struct telnet_s **'
 void telnet_zmp_arg(struct telnet_s * telnet, const char *arg);
      ^~~~~~~~~~~~~~
telnetc.c: At top level:
telnetc.c:2364:6: error: conflicting types for 'telnet_send_vzmpv'
 void telnet_send_vzmpv(FAR struct telnet_s **telnet, va_list va)
      ^~~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:800:6:
 note: previous declaration of 'telnet_send_vzmpv' was here
 void telnet_send_vzmpv(struct telnet_s * telnet, va_list va);
      ^~~~~~~~~~~~~~~~~
telnetc.c: In function 'telnet_send_vzmpv':
telnetc.c:2376:23: warning: passing argument 1 of 'telnet_zmp_arg' from 
incompatible pointer type [-Wincompatible-pointer-types]
        telnet_zmp_arg(telnet, arg);
                       ^~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:828:6:
 note: expected 'struct telnet_s *' but argument is of type 'struct telnet_s **'
 void telnet_zmp_arg(struct telnet_s * telnet, const char *arg);
      ^~~~~~~~~~~~~~
telnetc.c: At top level:
telnetc.c:2398:6: error: conflicting types for 'telnet_send_zmpv'
 void telnet_send_zmpv(FAR struct telnet_s **telnet, ...)
      ^~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:788:6:
 note: previous declaration of 'telnet_send_zmpv' was here
 void telnet_send_zmpv(struct telnet_s * telnet, ...);
      ^~~~~~~~~~~~~~~~
telnetc.c:2419:6: error: conflicting types for 'telnet_begin_zmp'
 void telnet_begin_zmp(FAR struct telnet_s **telnet, FAR const char *cmd)
      ^~~~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:814:6:
 note: previous declaration of 'telnet_begin_zmp' was here
 void telnet_begin_zmp(struct telnet_s * telnet, const char *cmd);
      ^~~~~~~~~~~~~~~~
telnetc.c: In function 'telnet_begin_zmp':
telnetc.c:2422:18: warning: passing argument 1 of 'telnet_zmp_arg' from 
incompatible pointer type [-Wincompatible-pointer-types]
   telnet_zmp_arg(telnet, cmd);
                  ^~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:828:6:
 note: expected 'struct telnet_s *' but argument is of type 'struct telnet_s **'
 void telnet_zmp_arg(struct telnet_s * telnet, const char *arg);
      ^~~~~~~~~~~~~~
telnetc.c: At top level:
telnetc.c:2437:6: error: conflicting types for 'telnet_zmp_arg'
 void telnet_zmp_arg(FAR struct telnet_s **telnet, FAR const char *arg)
      ^~~~~~~~~~~~~~
In file included from telnetc.c:66:0:
<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/include/netutils/telnetc.h>:828:6:
 note: previous declaration of 'telnet_zmp_arg' was here
 void telnet_zmp_arg(struct telnet_s * telnet, const char *arg);
      ^~~~~~~~~~~~~~
telnetc.c: In function '_subnegotiate':
telnetc.c:1146:1: warning: control reaches end of non-void function 
[-Wreturn-type]
 }
 ^
make[2]: *** 
[telnetc.home.jenkins.jenkins-slave.workspace.NuttX-Nightly-Build.apps.netutils.telnetc.o]
 Error 1
make[2]: Target 'all' not remade because of errors.
make[1]: *** 
[<https://builds.apache.org/job/NuttX-Nightly-Build/ws/apps/netutils/telnetc_all]>
 Error 2
make[1]: Target 'all' not remade because of errors.
make: *** [../apps/libapps.a] Error 2
net/tun.c:1061:13: warning: 'tun_ipv6multicast' defined but not used 
[-Wunused-function]
 static void tun_ipv6multicast(FAR struct tun_device_s *priv)
             ^~~~~~~~~~~~~~~~~
make: Target 'all' not remade because of errors.
====================================================================================
Configuration/Tool: sim/touchscreen
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
====================================================================================
Configuration/Tool: sim/bas
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
In file included from bas.c:84:0:
bas.c: In function 'bas_interpreter':
bas_error.h:110:37: warning: left-hand operand of comma expression has no 
effect [-Wunused-value]
 #define NOSUCHLINE         STATIC+40, _("No such line")
                                     ^
bas.c:2425:52: note: in expansion of macro 'NOSUCHLINE'
                           FS_putChars(STDCHANNEL, (NOSUCHLINE));
                                                    ^~~~~~~~~~
bas_fs.c:107:22: warning: 'g_vt100_colormap' defined but not used 
[-Wunused-const-variable=]
 static const uint8_t g_vt100_colormap[8] =
                      ^~~~~~~~~~~~~~~~
<stdout>:4048:16: warning: 'input' defined but not used [-Wunused-function]
====================================================================================
Skipping: sim/mtdpart
====================================================================================
Configuration/Tool: sim/spiffs
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
====================================================================================
Configuration/Tool: sim/ustream
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
local/local_connect.c: In function 'psock_local_connect':
local/local_connect.c:292:2: warning: #warning Missing logic [-Wcpp]
 #warning Missing logic
  ^~~~~~~
====================================================================================
Configuration/Tool: sim/userfs
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
local/local_fifo.c: In function 'local_release_halfduplex':
local/local_fifo.c:449:4: warning: #warning Missing logic [-Wcpp]
 #  warning Missing logic
    ^~~~~~~
local/local_connect.c: In function 'psock_local_connect':
local/local_connect.c:292:2: warning: #warning Missing logic [-Wcpp]
 #warning Missing logic
  ^~~~~~~
local/local_sockif.c: In function 'local_connect':
local/local_sockif.c:550:2: warning: #warning Missing logic [-Wcpp]
 #warning Missing logic
  ^~~~~~~
local/local_sockif.c: In function 'local_send':
local/local_sockif.c:695:2: warning: #warning Missing logic [-Wcpp]
 #warning Missing logic
  ^~~~~~~
====================================================================================
Skipping: sim/rpproxy
====================================================================================
Configuration/Tool: sim/dsptest
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
--2020-02-28 05:47:28--  
https://github.com/ThrowTheSwitch/Unity/archive/v2.4.3.tar.gz
Resolving github.com (github.com)... 192.30.255.112
Connecting to github.com (github.com)|192.30.255.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/ThrowTheSwitch/Unity/tar.gz/v2.4.3 
[following]
--2020-02-28 05:47:28--  
https://codeload.github.com/ThrowTheSwitch/Unity/tar.gz/v2.4.3
Resolving codeload.github.com (codeload.github.com)... 192.30.255.121
Connecting to codeload.github.com (codeload.github.com)|192.30.255.121|:443... 
connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: 'v2.4.3.tar.gz'

     0K .......... .......... .......... .......... .......... 5.29M
    50K .......... .......... .......... .......... .......... 11.4M
   100K .......... .......... .......... .......... .......... 2.91M
   150K .......... .......... .......... .......... .......... 29.2M
   200K .......... .......... .......... .......... .......... 6.41M
   250K .......                                                24.3M=0.04s

2020-02-28 05:47:28 (6.31 MB/s) - 'v2.4.3.tar.gz' saved [264150]

====================================================================================
Configuration/Tool: qemu-i486/nsh
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
====================================================================================
Configuration/Tool: qemu-i486/ostest
------------------------------------------------------------------------------------
  Cleaning...
  Configuring...
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
  Building NuttX...
------------------------------------------------------------------------------------
====================================================================================
Build step 'Execute shell' marked build as failure

Reply via email to