bugGNU Octave - Bugs: bug #66687, Build failure: vxi11_clnt.c:71:36:...

 
 

bug #66687: Build failure: vxi11_clnt.c:71:36: error: incompatible function pointer types

Submitter:  Marius Schamschula <mschamschula>
Submitted:  Mon 20 Jan 2025 06:26:27 PM UTC
   
 
Category:  Octave Package Severity:  3 - Normal
Priority:  5 - Normal Item Group:  Build Failure
Status:  None Assigned to:  None
Originator Name:  Open/Closed:  * Open
Release:  * 9.3.0 Operating System:  * Mac OS
Fixed Release:  None Planned Release:  None
* Mandatory Fields

Add a New Comment Rich Markup
   

Jump to the original submission

Tue 21 Jan 2025 11:48:21 AM UTC, comment #7: 

Somehow my last comment didn't post.

I updated the rpcgen-mt Portfile to use https://github.com/thkukuk/rpcsvc-proto instead of pulling the rpcgen  subdirectory from the FreeBSD usr.bin tree.


Marius Schamschula <mschamschula>
Tue 21 Jan 2025 03:27:14 AM UTC, comment #6: 
Dmitri A. Sergatskov <dasergatskov>
Tue 21 Jan 2025 03:17:07 AM UTC, comment #5: 

can not build on Arch Linux too:
In file included from vxi11.cc:28:
vxi11_class.h:23:10: fatal error: vxi11.h: No such file or directory
   23 | #include "vxi11.h"
      |          ^~~~~~~~~

and I found some vxi11 files are removed from 0.9.3 to 0.9.4

(file #56787)

pingplug <pingplug>
Mon 20 Jan 2025 09:51:46 PM UTC, comment #4: 

Then, perhaps you can just install https://github.com/thkukuk/rpcsvc-proto
instead.

Dmitri.
--

Dmitri A. Sergatskov <dasergatskov>
Mon 20 Jan 2025 09:44:54 PM UTC, comment #3: 

I sure didn't! Nothing else I have installed depends on it.

Unfortunately, the MacPorts port for rpcgen-mt currently is set nomaintainer, and was last updated in 2019 before FreeBSD switched from Subversion to Git.

In the meantime after manually downloading the source folder I used MacPorts to install rpcgen-mt.

Now I do get a clean build of octave-instrument-control!

I need to figure out a way of downloading just the rpcgen directory, rather than the entire FreeBSD source code tree.

Marius Schamschula <mschamschula>
Mon 20 Jan 2025 09:35:41 PM UTC, comment #2: 

Homebrew provides "rpcgen" replacement as a part of "rpcsvc-proto" package. With it, "instrument-control" installs fine:

...
  ../octave/api-v59/packages/instrument-control-0.9.4/writeread.m  pass    3/3    [ 0.016s /  0.017s]

Fixed test scripts:

                                                        total time (CPU / CLOCK)  [   0.6s /   20.3s]
Failure Summary:

  ..ctave/api-v59/packages/instrument-control-0.9.4/instrhwinfo.m  pass    4/5
                                                (expected failure) XFAIL   1

Summary:

  PASS                              178
  FAIL                                0
  XFAIL (expected failure)            1

...
octave:3> ver
----------------------------------------------------------------------
GNU Octave Version: 9.3.0 (hg id: 5854a65df8f5)
GNU Octave License: GNU General Public License
Operating System: Darwin 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec  6 19:03:40 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6041 arm64
----------------------------------------------------------------------
Package Name        | Version | Installation directory
--------------------+---------+-----------------------
           control  |   4.1.0 | /Users/dmitri/.local/share/octave/api-v59/packages/control-4.1.0
          geometry  |   4.1.0 | /Users/dmitri/.local/share/octave/api-v59/packages/geometry-4.1.0
instrument-control  |   0.9.4 | /Users/dmitri/.local/share/octave/api-v59/packages/instrument-control-0.9.4
...

There may be a bug in "configure" script when it detects that "rpcgen" does not support "-M" option, but still enables VXI11 protocol.

Dmitri.
--

Dmitri A. Sergatskov <dasergatskov>
Mon 20 Jan 2025 07:17:43 PM UTC, comment #1: 

I can reproduce thee problem on MacOS/homebrew.
I think the issue is with MacOS's version of "rpcgen".
Do you have "rpcgen-mt" from Macports installed?

Dmitri.
--

Dmitri A. Sergatskov <dasergatskov>
Mon 20 Jan 2025 06:26:27 PM UTC, original submission:  

While updating the MacPorts port for instrument-control to version 0.9.4, I get the following failure


/usr/bin/clang -c -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -fPIC -I/opt/local/include/octave-9.3.0/octave/.. -I/opt/local/include/octave-9.3.0/octave -I/opt/local/include  -pthread -fexceptions -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -DHAVE_CONFIG_H   -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -arch arm64 -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk  -I/opt/local/include  -DHAVE_CONFIG_H vxi11_clnt.c -o vxi11_clnt.o
vxi11_clnt.c:64:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
   64 | device_abort_1(argp, clnt)
      | ^
vxi11_clnt.c:71:36: error: incompatible function pointer types passing 'int (XDR *, Device_Link *)' (aka 'int (struct __rpc_xdr *, long *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   71 |         if (clnt_call(clnt, device_abort, xdr_Device_Link, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                           ^~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:71:59: error: incompatible function pointer types passing 'int (XDR *, Device_Error *)' (aka 'int (struct __rpc_xdr *, struct Device_Error *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   71 |         if (clnt_call(clnt, device_abort, xdr_Device_Link, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                  ^~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:77:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
   77 | create_link_1(argp, clnt)
      | ^
vxi11_clnt.c:84:35: error: incompatible function pointer types passing 'int (XDR *, Create_LinkParms *)' (aka 'int (struct __rpc_xdr *, struct Create_LinkParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   84 |         if (clnt_call(clnt, create_link, xdr_Create_LinkParms, argp, xdr_Create_LinkResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                          ^~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:84:63: error: incompatible function pointer types passing 'int (XDR *, Create_LinkResp *)' (aka 'int (struct __rpc_xdr *, struct Create_LinkResp *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   84 |         if (clnt_call(clnt, create_link, xdr_Create_LinkParms, argp, xdr_Create_LinkResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                      ^~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:90:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
   90 | device_write_1(argp, clnt)
      | ^
vxi11_clnt.c:97:36: error: incompatible function pointer types passing 'int (XDR *, Device_WriteParms *)' (aka 'int (struct __rpc_xdr *, struct Device_WriteParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   97 |         if (clnt_call(clnt, device_write, xdr_Device_WriteParms, argp, xdr_Device_WriteResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                           ^~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:97:65: error: incompatible function pointer types passing 'int (XDR *, Device_WriteResp *)' (aka 'int (struct __rpc_xdr *, struct Device_WriteResp *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
   97 |         if (clnt_call(clnt, device_write, xdr_Device_WriteParms, argp, xdr_Device_WriteResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                        ^~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:103:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  103 | device_read_1(argp, clnt)
      | ^
vxi11_clnt.c:110:35: error: incompatible function pointer types passing 'int (XDR *, Device_ReadParms *)' (aka 'int (struct __rpc_xdr *, struct Device_ReadParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  110 |         if (clnt_call(clnt, device_read, xdr_Device_ReadParms, argp, xdr_Device_ReadResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                          ^~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:110:63: error: incompatible function pointer types passing 'int (XDR *, Device_ReadResp *)' (aka 'int (struct __rpc_xdr *, struct Device_ReadResp *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  110 |         if (clnt_call(clnt, device_read, xdr_Device_ReadParms, argp, xdr_Device_ReadResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                      ^~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:116:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  116 | device_readstb_1(argp, clnt)
      | ^
vxi11_clnt.c:123:38: error: incompatible function pointer types passing 'int (XDR *, Device_GenericParms *)' (aka 'int (struct __rpc_xdr *, struct Device_GenericParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  123 |         if (clnt_call(clnt, device_readstb, xdr_Device_GenericParms, argp, xdr_Device_ReadStbResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                             ^~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:123:69: error: incompatible function pointer types passing 'int (XDR *, Device_ReadStbResp *)' (aka 'int (struct __rpc_xdr *, struct Device_ReadStbResp *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  123 |         if (clnt_call(clnt, device_readstb, xdr_Device_GenericParms, argp, xdr_Device_ReadStbResp, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                            ^~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:129:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  129 | device_trigger_1(argp, clnt)
      | ^
vxi11_clnt.c:136:38: error: incompatible function pointer types passing 'int (XDR *, Device_GenericParms *)' (aka 'int (struct __rpc_xdr *, struct Device_GenericParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  136 |         if (clnt_call(clnt, device_trigger, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                             ^~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:136:69: error: incompatible function pointer types passing 'int (XDR *, Device_Error *)' (aka 'int (struct __rpc_xdr *, struct Device_Error *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  136 |         if (clnt_call(clnt, device_trigger, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                            ^~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:142:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  142 | device_clear_1(argp, clnt)
      | ^
vxi11_clnt.c:149:36: error: incompatible function pointer types passing 'int (XDR *, Device_GenericParms *)' (aka 'int (struct __rpc_xdr *, struct Device_GenericParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  149 |         if (clnt_call(clnt, device_clear, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                           ^~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:149:67: error: incompatible function pointer types passing 'int (XDR *, Device_Error *)' (aka 'int (struct __rpc_xdr *, struct Device_Error *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  149 |         if (clnt_call(clnt, device_clear, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                          ^~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:155:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  155 | device_remote_1(argp, clnt)
      | ^
vxi11_clnt.c:162:37: error: incompatible function pointer types passing 'int (XDR *, Device_GenericParms *)' (aka 'int (struct __rpc_xdr *, struct Device_GenericParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  162 |         if (clnt_call(clnt, device_remote, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                            ^~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:162:68: error: incompatible function pointer types passing 'int (XDR *, Device_Error *)' (aka 'int (struct __rpc_xdr *, struct Device_Error *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  162 |         if (clnt_call(clnt, device_remote, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                           ^~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:168:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  168 | device_local_1(argp, clnt)
      | ^
vxi11_clnt.c:175:36: error: incompatible function pointer types passing 'int (XDR *, Device_GenericParms *)' (aka 'int (struct __rpc_xdr *, struct Device_GenericParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  175 |         if (clnt_call(clnt, device_local, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                           ^~~~~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
vxi11_clnt.c:175:67: error: incompatible function pointer types passing 'int (XDR *, Device_Error *)' (aka 'int (struct __rpc_xdr *, struct Device_Error *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  175 |         if (clnt_call(clnt, device_local, xdr_Device_GenericParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                                                          ^~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:52: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                                           ^~~~
vxi11_clnt.c:181:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
  181 | device_lock_1(argp, clnt)
      | ^
vxi11_clnt.c:188:35: error: incompatible function pointer types passing 'int (XDR *, Device_LockParms *)' (aka 'int (struct __rpc_xdr *, struct Device_LockParms *)') to parameter of type 'xdrproc_t' (aka 'int (*)(struct __rpc_xdr *, void *, unsigned int)') [-Wincompatible-function-pointer-types]
  188 |         if (clnt_call(clnt, device_lock, xdr_Device_LockParms, argp, xdr_Device_Error, &clnt_res, TIMEOUT) != RPC_SUCCESS)
      |                                          ^~~~~~~~~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/rpc/clnt.h:197:38: note: expanded from macro 'clnt_call'
  197 |         ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
      |                                             ^~~~~
fatal error: too many errors emitted, stopping now [-ferror-limit=]
10 warnings and 20 errors generated.
make[1]: *** [vxi11_clnt.o] Error 1
rm vxi11_close.o __vxi11_pkg_lock__.o vxi11_write.o vxi11_read.o vxi11.o
make: *** [vxi11] Error 2


Marius Schamschula <mschamschula>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

Attached Files
file #56787:  log.txt added by pingplug (118KiB - text/plain)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by pingplug (Updated the item)
  • -email is unavailable- added by dasergatskov (Posted a comment)
  • -email is unavailable- added by mschamschula (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only group members can vote.

     

    Follows 1 latest change.

    Date Changed by Updated Field Previous Value => Replaced by
    2025-01-21 pingplug Attached File- Added log.txt, #56787

    Back to the top

    Powered by Savane 3.14-9aa3.
    Corresponding source code